Commit ec6f97a
range.bnf: Fix invalid bracket expression
`nr` uses `['1'-'9']` and `['0'-'9']`, which are equivalent to `['19]`
and `['09]` respectively. This is modified to `[1-9]` and `[0-9]` to
match the syntax used in the `part` rule, fixing the productions.1 parent 906b664 commit ec6f97a
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
9 | | - | |
| 9 | + | |
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
| |||
0 commit comments