fix typos in repetition syntax

This commit is contained in:
ochafik 2024-06-11 00:58:37 +01:00
parent 124f44dd38
commit 07a9487715
2 changed files with 2 additions and 2 deletions

View file

@ -22,4 +22,4 @@ string ::=
number ::= ("-"? ([0-9] | [1-9] [0-9]{0,15})) ("." [0-9]+)? ([eE] [-+]? [0-9] [1-9]{0,15})? ws
# Optional space: by convention, applied in this grammar after literal chars when allowed
ws ::= [ \t\n]{,20}
ws ::= [ \t\n]{0,20}

View file

@ -31,4 +31,4 @@ string ::=
number ::= ("-"? ([0-9] | [1-9] [0-9]{0,15})) ("." [0-9]+)? ([eE] [-+]? [1-9] [0-9]{0,15})? ws
# Optional space: by convention, applied in this grammar after literal chars when allowed
ws ::= [ \t\n]{,20}
ws ::= [ \t\n]{0,20}