From cd05226cd8367f44b0e399ba05f663da050a2a3d Mon Sep 17 00:00:00 2001 From: Daniel Smith Date: Sun, 10 Jan 2021 17:13:38 +0200 Subject: [PATCH] Possible typo in "Escapes" table 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 01b9692..a3d5504 100644 --- a/SPEC.md +++ b/SPEC.md @@ -189,7 +189,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