Skip to content

Commit 122e64c

Browse files
authored
Port ABNF fix to relevant mention in syntax document (#615)
Update syntax documentation with fixes in ABNF
1 parent f9b0c6f commit 122e64c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/syntax.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -789,7 +789,7 @@ quoted-char = content-char / s / "." / "@" / "{" / "}"
789789
790790
unquoted = name
791791
/ number-literal
792-
number-literal = ["-"] (0 / ([1-9] *DIGIT)) ["." 1*DIGIT] [%i"e" ["-" / "+"] 1*DIGIT]
792+
number-literal = ["-"] (%x30 / (%x31-39 *DIGIT)) ["." 1*DIGIT] [%i"e" ["-" / "+"] 1*DIGIT]
793793
```
794794

795795
### Names and Identifiers

0 commit comments

Comments
 (0)