From 950786d3751a295336aaf9b8286ff6a824c66e8b Mon Sep 17 00:00:00 2001 From: Sera Brocious Date: Mon, 12 Apr 2021 02:26:10 -0400 Subject: [PATCH] Fixed inconsistency between spec wording and BNF --- SPEC.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SPEC.md b/SPEC.md index 67767a9..54388e7 100644 --- a/SPEC.md +++ b/SPEC.md @@ -190,7 +190,7 @@ interpreted as described in the following table: | Quotation Mark (Double Quote) | `\"` | `U+0022` | | Backspace | `\b` | `U+0008` | | Form Feed | `\f` | `U+000C` | -| Unicode Escape | `\u{(0-6 hex chars)}` | Code point described by hex characters, up to `10FFFF` | +| Unicode Escape | `\u{(1-6 hex chars)}` | Code point described by hex characters, up to `10FFFF` | ### Raw String