From 9ceb0ed8d4154a70d3f23b1f6052eb55621128e8 Mon Sep 17 00:00:00 2001 From: Daniel Smith Date: Mon, 11 Jan 2021 22:08:03 +0200 Subject: [PATCH] Possible typo in "Escapes" table (#72) The maximum unicode code point is `10FFFF` but in the escapes table it states code points can only go up to `10FFF`. I think this is an error, since most emojis are well above that number, and other languages allow escapes up to `10FFFF` --- SPEC.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SPEC.md b/SPEC.md index 3c05f0b..67767a9 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 `10FFF` | +| Unicode Escape | `\u{(0-6 hex chars)}` | Code point described by hex characters, up to `10FFFF` | ### Raw String