Skip to content

Commit cd82756

Browse files
committed
[css-syntax-3] Clarify that every range is inclusive. Fixes #3008.
1 parent 7121795 commit cd82756

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

css-syntax-3/Overview.bs

+10-8
Original file line numberDiff line numberDiff line change
@@ -750,21 +750,21 @@ Definitions</h3>
750750

751751
<dt><dfn export>digit</dfn>
752752
<dd>
753-
A <a>code point</a> between U+0030 DIGIT ZERO (0) and U+0039 DIGIT NINE (9).
753+
A <a>code point</a> between U+0030 DIGIT ZERO (0) and U+0039 DIGIT NINE (9) inclusive.
754754

755755
<dt><dfn export>hex digit</dfn>
756756
<dd>
757757
A <a>digit</a>,
758-
or a <a>code point</a> between U+0041 LATIN CAPITAL LETTER A (A) and U+0046 LATIN CAPITAL LETTER F (F),
759-
or a <a>code point</a> between U+0061 LATIN SMALL LETTER A (a) and U+0066 LATIN SMALL LETTER F (f).
758+
or a <a>code point</a> between U+0041 LATIN CAPITAL LETTER A (A) and U+0046 LATIN CAPITAL LETTER F (F) inclusive,
759+
or a <a>code point</a> between U+0061 LATIN SMALL LETTER A (a) and U+0066 LATIN SMALL LETTER F (f) inclusive.
760760

761761
<dt><dfn export>uppercase letter</dfn>
762762
<dd>
763-
A <a>code point</a> between U+0041 LATIN CAPITAL LETTER A (A) and U+005A LATIN CAPITAL LETTER Z (Z).
763+
A <a>code point</a> between U+0041 LATIN CAPITAL LETTER A (A) and U+005A LATIN CAPITAL LETTER Z (Z) inclusive.
764764

765765
<dt><dfn export>lowercase letter</dfn>
766766
<dd>
767-
A <a>code point</a> between U+0061 LATIN SMALL LETTER A (a) and U+007A LATIN SMALL LETTER Z (z).
767+
A <a>code point</a> between U+0061 LATIN SMALL LETTER A (a) and U+007A LATIN SMALL LETTER Z (z) inclusive.
768768

769769
<dt><dfn export>letter</dfn>
770770
<dd>
@@ -789,9 +789,9 @@ Definitions</h3>
789789

790790
<dt><dfn export>non-printable code point</dfn>
791791
<dd>
792-
A <a>code point</a> between U+0000 NULL and U+0008 BACKSPACE,
792+
A <a>code point</a> between U+0000 NULL and U+0008 BACKSPACE inclusive,
793793
or U+000B LINE TABULATION,
794-
or a <a>code point</a> between U+000E SHIFT OUT and U+001F INFORMATION SEPARATOR ONE,
794+
or a <a>code point</a> between U+000E SHIFT OUT and U+001F INFORMATION SEPARATOR ONE inclusive,
795795
or U+007F DELETE.
796796

797797
<dt><dfn export>newline</dfn>
@@ -2795,7 +2795,7 @@ The Unicode-Range microsyntax</h2>
27952795

27962796
<dt>U+0001-00ff
27972797
<dd>
2798-
Defines a range of codepoints between the first and the second value,
2798+
Defines a range of codepoints between the first and the second value inclusive,
27992799
in this case the range between "1" and "ff" (255 in decimal) inclusive.
28002800

28012801
<dt>U+00??
@@ -3467,6 +3467,8 @@ Changes from the 20 February 2014 Candidate Recommendation</h3>
34673467

34683468
* Removed "code point" and "surrogate code point" in favor of the identical definitions in the Infra Standard.
34693469

3470+
* Clarified on every range that they are inclusive.
3471+
34703472

34713473
<h3 id="changes-WD-20131105">
34723474
Changes from the 5 November 2013 Last Call Working Draft</h3>

0 commit comments

Comments
 (0)