From 491cc46f89df0261b494ccc89c2bc7b243467bb2 Mon Sep 17 00:00:00 2001 From: Tab Atkins-Bittner Date: Tue, 26 Dec 2023 13:16:55 -0800 Subject: [PATCH] Fix the disallowed low ASCIIs --- SPEC.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/SPEC.md b/SPEC.md index 39e5801..adef091 100644 --- a/SPEC.md +++ b/SPEC.md @@ -589,8 +589,9 @@ Note that for the purpose of new lines, CRLF is considered _a single newline_. The following code points may not appear literally anywhere in the document. They may be represented in Strings (but not Raw Strings) using `\u{}`. -* Any codepoint with hexadecimal value `0x20` or below (various control - characters). +* The codepoints `U+0000`-`U+0009`, + the codepoint `U+000B`, + or the codepoints `U+000E`-`U+001F` (various control characters). * `0x7F` (the Delete control character). * Any codepoint that is not a [Unicode Scalar Value](https://unicode.org/glossary/#unicode_scalar_value).