From e7147cf4ac6b0829cade43d515c971f0061dae65 Mon Sep 17 00:00:00 2001 From: Serafina Brocious Date: Sun, 18 Apr 2021 23:19:34 -0400 Subject: [PATCH] Fixed inconsistency between spec wording and BNF (#88) --- SPEC.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SPEC.md b/SPEC.md index 418b7b1..ca15ca6 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