Skip to content

Commit 394af25

Browse files
committed
add space-separators between sets
1 parent 4325170 commit 394af25

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

SPEC.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -881,11 +881,11 @@ string-character := '\\' (["\\bfnrts] | 'u{' hex-unicode '}') | ws-escape | [^\\
881881
ws-escape := '\\' (unicode-space | newline)+
882882
hex-digit := [0-9a-fA-F]
883883
hex-unicode := hex-digit{1, 6} - surrogate - above-max-scalar // Unicode Scalar Value in hex₁₆, leading 0s allowed within length ≤ 6
884-
surrogate := [0]{0,2}[dD][8-9a-fA-F]hex-digit{2}
885-
// U+D800-DFFF: D 8 00
886-
// D F FF
887-
above-max-scalar = [2-9a-fA-F]hex-digit{5} | [1][1-9a-fA-F]hex-digit{4}
888-
// >U+10FFFF: >1 _____ 1 >0 ____
884+
surrogate := [0]{0, 2} [dD] [8-9a-fA-F] hex-digit{2}
885+
// U+D800-DFFF: D 8 00
886+
// D F FF
887+
above-max-scalar = [2-9a-fA-F] hex-digit{5} | [1] [1-9a-fA-F] hex-digit{4}
888+
// >U+10FFFF: >1 _____ 1 >0 ____
889889
890890
891891
raw-string := '#' raw-string-quotes '#' | '#' raw-string '#'

0 commit comments

Comments
 (0)