Skip to content

Commit 50e7476

Browse files
authored
Update draft-marchan-kdl2.md
1 parent d551f1b commit 50e7476

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

draft-marchan-kdl2.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ interpreted as described in the following table:
452452
| Form Feed | `\f` | `U+000C` |
453453
| Space | `\s` | `U+0020` |
454454
| Unicode Escape | `\u{(1-6 hex chars)}` | Code point described by hex characters, as long as it represents a [Unicode Scalar Value](https://unicode.org/glossary/#unicode_scalar_value) |
455-
| Whitespace Escape | See below | N/A |
455+
| Whitespace Escape | See below | N/A |
456456

457457
#### Escaped Whitespace
458458

@@ -985,12 +985,12 @@ string-character :=
985985
[^\\"] - disallowed-literal-code-points
986986
ws-escape := '\\' (unicode-space | newline)+
987987
hex-digit := [0-9a-fA-F]
988-
hex-unicode := hex-digit{1, 6} - surrogate - above-max-scalar // Unicode Scalar Value in hex₁₆, leading 0s allowed within length ≤ 6
988+
hex-unicode := hex-digit{1, 6} - surrogate - above-max-scalar
989989
surrogate := [0]{0, 2} [dD] [8-9a-fA-F] hex-digit{2}
990990
// U+D800-DFFF: D 8 00
991991
// D F FF
992-
above-max-scalar = [2-9a-fA-F] hex-digit{5} | [1] [1-9a-fA-F] hex-digit{4}
993-
// >U+10FFFF: >1 _____ 1 >0 ____
992+
above-max-scalar = [2-9a-fA-F] hex-digit{5} |
993+
[1] [1-9a-fA-F] hex-digit{4}
994994

995995

996996
raw-string := '#' raw-string-quotes '#' | '#' raw-string '#'

0 commit comments

Comments
 (0)