@@ -1042,8 +1042,8 @@ impl char {
10421042
10431043 /// Checks if the value is an ASCII alphabetic character:
10441044 ///
1045- /// - U+0041 'A' ... U+005A 'Z', or
1046- /// - U+0061 'a' ... U+007A 'z'.
1045+ /// - U+0041 'A' ..= U+005A 'Z', or
1046+ /// - U+0061 'a' ..= U+007A 'z'.
10471047 ///
10481048 /// # Examples
10491049 ///
@@ -1075,7 +1075,7 @@ impl char {
10751075 }
10761076
10771077 /// Checks if the value is an ASCII uppercase character:
1078- /// U+0041 'A' ... U+005A 'Z'.
1078+ /// U+0041 'A' ..= U+005A 'Z'.
10791079 ///
10801080 /// # Examples
10811081 ///
@@ -1107,7 +1107,7 @@ impl char {
11071107 }
11081108
11091109 /// Checks if the value is an ASCII lowercase character:
1110- /// U+0061 'a' ... U+007A 'z'.
1110+ /// U+0061 'a' ..= U+007A 'z'.
11111111 ///
11121112 /// # Examples
11131113 ///
@@ -1140,9 +1140,9 @@ impl char {
11401140
11411141 /// Checks if the value is an ASCII alphanumeric character:
11421142 ///
1143- /// - U+0041 'A' ... U+005A 'Z', or
1144- /// - U+0061 'a' ... U+007A 'z', or
1145- /// - U+0030 '0' ... U+0039 '9'.
1143+ /// - U+0041 'A' ..= U+005A 'Z', or
1144+ /// - U+0061 'a' ..= U+007A 'z', or
1145+ /// - U+0030 '0' ..= U+0039 '9'.
11461146 ///
11471147 /// # Examples
11481148 ///
@@ -1174,7 +1174,7 @@ impl char {
11741174 }
11751175
11761176 /// Checks if the value is an ASCII decimal digit:
1177- /// U+0030 '0' ... U+0039 '9'.
1177+ /// U+0030 '0' ..= U+0039 '9'.
11781178 ///
11791179 /// # Examples
11801180 ///
@@ -1207,9 +1207,9 @@ impl char {
12071207
12081208 /// Checks if the value is an ASCII hexadecimal digit:
12091209 ///
1210- /// - U+0030 '0' ... U+0039 '9', or
1211- /// - U+0041 'A' ... U+0046 'F', or
1212- /// - U+0061 'a' ... U+0066 'f'.
1210+ /// - U+0030 '0' ..= U+0039 '9', or
1211+ /// - U+0041 'A' ..= U+0046 'F', or
1212+ /// - U+0061 'a' ..= U+0066 'f'.
12131213 ///
12141214 /// # Examples
12151215 ///
@@ -1242,10 +1242,10 @@ impl char {
12421242
12431243 /// Checks if the value is an ASCII punctuation character:
12441244 ///
1245- /// - U+0021 ... U+002F `! " # $ % & ' ( ) * + , - . /`, or
1246- /// - U+003A ... U+0040 `: ; < = > ? @`, or
1247- /// - U+005B ... U+0060 ``[ \ ] ^ _ ` ``, or
1248- /// - U+007B ... U+007E `{ | } ~`
1245+ /// - U+0021 ..= U+002F `! " # $ % & ' ( ) * + , - . /`, or
1246+ /// - U+003A ..= U+0040 `: ; < = > ? @`, or
1247+ /// - U+005B ..= U+0060 ``[ \ ] ^ _ ` ``, or
1248+ /// - U+007B ..= U+007E `{ | } ~`
12491249 ///
12501250 /// # Examples
12511251 ///
@@ -1277,7 +1277,7 @@ impl char {
12771277 }
12781278
12791279 /// Checks if the value is an ASCII graphic character:
1280- /// U+0021 '!' ... U+007E '~'.
1280+ /// U+0021 '!' ..= U+007E '~'.
12811281 ///
12821282 /// # Examples
12831283 ///
@@ -1358,7 +1358,7 @@ impl char {
13581358 }
13591359
13601360 /// Checks if the value is an ASCII control character:
1361- /// U+0000 NUL ... U+001F UNIT SEPARATOR, or U+007F DELETE.
1361+ /// U+0000 NUL ..= U+001F UNIT SEPARATOR, or U+007F DELETE.
13621362 /// Note that most ASCII whitespace characters are control
13631363 /// characters, but SPACE is not.
13641364 ///
0 commit comments