Skip to content

Commit c2f6221

Browse files
committed
Fix warning about too many brackets.
1 parent 2dd755b commit c2f6221

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lrlex/src/lib/parser.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -520,7 +520,7 @@ where
520520
if !(regex_syntax::is_meta_character(c2)
521521
|| RE_LEX_ESC_LITERAL.is_match(s))
522522
{
523-
break (Some((i, s, j, c2)));
523+
break Some((i, s, j, c2));
524524
}
525525
}
526526
}

0 commit comments

Comments
 (0)