From 4750b5d0379cb0228c625864484ce102b546e85c Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Tue, 23 Jan 2024 23:36:04 +0300 Subject: [PATCH] Update syntax documentation with fixes in ABNF --- spec/syntax.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/syntax.md b/spec/syntax.md index c02e94291e..c510011723 100644 --- a/spec/syntax.md +++ b/spec/syntax.md @@ -789,7 +789,7 @@ quoted-char = content-char / s / "." / "@" / "{" / "}" unquoted = name / number-literal -number-literal = ["-"] (0 / ([1-9] *DIGIT)) ["." 1*DIGIT] [%i"e" ["-" / "+"] 1*DIGIT] +number-literal = ["-"] (%x30 / (%x31-39 *DIGIT)) ["." 1*DIGIT] [%i"e" ["-" / "+"] 1*DIGIT] ``` ### Names and Identifiers