Skip to content

Commit 7656084

Browse files
committed
Code formating
1 parent d0b47e7 commit 7656084

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/parser/match_rule.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ impl<'a> PatternParser<'a> {
212212
Some('[') => self.set(),
213213
Some('(') => self.group(),
214214
// FIXME: handle escaped special chars
215-
Some(c @ ('?' | '*' | '+' | '|')) => {
215+
Some(c @ ('?' | '*' | '+' | '|')) => {
216216
Err(ParseError::MissingPatternBeforeQuantifier(*c))
217217
}
218218
Some(_) => self.characters(),

0 commit comments

Comments
 (0)