Skip to content

Commit

Permalink
this todo was adressed a while ago
Browse files Browse the repository at this point in the history
  • Loading branch information
Dav1dde committed Aug 16, 2024
1 parent 09abfc0 commit 34afdde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion relay-pattern/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ impl<'a> Parser<'a> {
match c {
'?' => self.push_token(Token::Any(1)),
'*' => self.push_token(Token::Wildcard),
'[' => self.parse_class()?, // TODO escapes in classes
'[' => self.parse_class()?,
']' => return Err(ErrorKind::UnbalancedCharacterClass),
'\\' => match self.advance() {
Some(c) => self.push_literal(c),
Expand Down

0 comments on commit 34afdde

Please sign in to comment.