[go: up one dir, main page]

Skip to content

Commit

Permalink
Fix re_lit name in grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
inikulin committed May 9, 2020
1 parent cd6f64c commit ef4d4db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wirefilter-parser/src/grammar.pest
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ var = @{ ident ~ ("." ~ ident)* }
// Though, in the worst case we'll backtrack only 4 characters.
rhs = {
ipv4_range | ipv4_cidr | ipv4_lit | ipv6_range | ipv6_cidr | ipv6_lit |
int_range | int_lit | str_lit | regex_lit
int_range | int_lit | str_lit | re_lit
}

// Int literal
Expand Down

0 comments on commit ef4d4db

Please sign in to comment.