Change ... to ..= where applicable
This commit is contained in:
@@ -4166,8 +4166,8 @@ impl u8 {
|
||||
|
||||
/// Checks if the value is an ASCII alphabetic character:
|
||||
///
|
||||
/// - U+0041 'A' ... U+005A 'Z', or
|
||||
/// - U+0061 'a' ... U+007A 'z'.
|
||||
/// - U+0041 'A' ..= U+005A 'Z', or
|
||||
/// - U+0061 'a' ..= U+007A 'z'.
|
||||
///
|
||||
/// # Examples
|
||||
///
|
||||
@@ -4202,7 +4202,7 @@ impl u8 {
|
||||
}
|
||||
|
||||
/// Checks if the value is an ASCII uppercase character:
|
||||
/// U+0041 'A' ... U+005A 'Z'.
|
||||
/// U+0041 'A' ..= U+005A 'Z'.
|
||||
///
|
||||
/// # Examples
|
||||
///
|
||||
@@ -4237,7 +4237,7 @@ impl u8 {
|
||||
}
|
||||
|
||||
/// Checks if the value is an ASCII lowercase character:
|
||||
/// U+0061 'a' ... U+007A 'z'.
|
||||
/// U+0061 'a' ..= U+007A 'z'.
|
||||
///
|
||||
/// # Examples
|
||||
///
|
||||
@@ -4273,9 +4273,9 @@ impl u8 {
|
||||
|
||||
/// Checks if the value is an ASCII alphanumeric character:
|
||||
///
|
||||
/// - U+0041 'A' ... U+005A 'Z', or
|
||||
/// - U+0061 'a' ... U+007A 'z', or
|
||||
/// - U+0030 '0' ... U+0039 '9'.
|
||||
/// - U+0041 'A' ..= U+005A 'Z', or
|
||||
/// - U+0061 'a' ..= U+007A 'z', or
|
||||
/// - U+0030 '0' ..= U+0039 '9'.
|
||||
///
|
||||
/// # Examples
|
||||
///
|
||||
@@ -4310,7 +4310,7 @@ impl u8 {
|
||||
}
|
||||
|
||||
/// Checks if the value is an ASCII decimal digit:
|
||||
/// U+0030 '0' ... U+0039 '9'.
|
||||
/// U+0030 '0' ..= U+0039 '9'.
|
||||
///
|
||||
/// # Examples
|
||||
///
|
||||
@@ -4346,9 +4346,9 @@ impl u8 {
|
||||
|
||||
/// Checks if the value is an ASCII hexadecimal digit:
|
||||
///
|
||||
/// - U+0030 '0' ... U+0039 '9', or
|
||||
/// - U+0041 'A' ... U+0046 'F', or
|
||||
/// - U+0061 'a' ... U+0066 'f'.
|
||||
/// - U+0030 '0' ..= U+0039 '9', or
|
||||
/// - U+0041 'A' ..= U+0046 'F', or
|
||||
/// - U+0061 'a' ..= U+0066 'f'.
|
||||
///
|
||||
/// # Examples
|
||||
///
|
||||
@@ -4384,10 +4384,10 @@ impl u8 {
|
||||
|
||||
/// Checks if the value is an ASCII punctuation character:
|
||||
///
|
||||
/// - U+0021 ... U+002F `! " # $ % & ' ( ) * + , - . /`, or
|
||||
/// - U+003A ... U+0040 `: ; < = > ? @`, or
|
||||
/// - U+005B ... U+0060 ``[ \ ] ^ _ ` ``, or
|
||||
/// - U+007B ... U+007E `{ | } ~`
|
||||
/// - U+0021 ..= U+002F `! " # $ % & ' ( ) * + , - . /`, or
|
||||
/// - U+003A ..= U+0040 `: ; < = > ? @`, or
|
||||
/// - U+005B ..= U+0060 ``[ \ ] ^ _ ` ``, or
|
||||
/// - U+007B ..= U+007E `{ | } ~`
|
||||
///
|
||||
/// # Examples
|
||||
///
|
||||
@@ -4422,7 +4422,7 @@ impl u8 {
|
||||
}
|
||||
|
||||
/// Checks if the value is an ASCII graphic character:
|
||||
/// U+0021 '!' ... U+007E '~'.
|
||||
/// U+0021 '!' ..= U+007E '~'.
|
||||
///
|
||||
/// # Examples
|
||||
///
|
||||
@@ -4509,7 +4509,7 @@ impl u8 {
|
||||
}
|
||||
|
||||
/// Checks if the value is an ASCII control character:
|
||||
/// U+0000 NUL ... U+001F UNIT SEPARATOR, or U+007F DELETE.
|
||||
/// U+0000 NUL ..= U+001F UNIT SEPARATOR, or U+007F DELETE.
|
||||
/// Note that most ASCII whitespace characters are control
|
||||
/// characters, but SPACE is not.
|
||||
///
|
||||
|
||||
Reference in New Issue
Block a user