Skip to content

Commit

Permalink
fix: correct union custom id
Browse files Browse the repository at this point in the history
  • Loading branch information
homura committed Dec 29, 2023
1 parent 4a57667 commit a6f3f96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/grammar/grammar.ebnf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ newline = "\n" | "\r\n";
identifier = letter, { letter | digit | "_" };
number = nonzero, { digit };
number_greater_or_equal_than_zero = { digit };
number_greater_or_equal_than_zero = zero | { number };
whitespace = ifs | newline;
break = whitespace, { whitespace };
Expand Down

0 comments on commit a6f3f96

Please sign in to comment.