Skip to content

Commit

Permalink
Format the code
Browse files Browse the repository at this point in the history
  • Loading branch information
egli committed May 27, 2024
1 parent 73fc854 commit c202281
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parser/match_rule.rs
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ impl<'a> PatternParser<'a> {
Some('!') => self.negate(),
Some('[') => self.characters(),
Some('(') => self.group(),
// FIXME: handle escaped special chars
// FIXME: handle escaped special chars
Some('?') | Some('*') | Some('+') | Some('|') => {
Err(ParseError::MissingPatternBeforeQuantifier)
}
Expand Down

0 comments on commit c202281

Please sign in to comment.