mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-14 09:36:06 +00:00
Fixes docs for ASCII functions to no longer claim U+0021 is '@'.
This commit is contained in:
parent
026339e42b
commit
64236092e5
@ -2892,7 +2892,7 @@ impl u8 {
|
||||
}
|
||||
|
||||
/// Checks if the value is an ASCII graphic character:
|
||||
/// U+0021 '@' ... U+007E '~'.
|
||||
/// U+0021 '!' ... U+007E '~'.
|
||||
///
|
||||
/// # Examples
|
||||
///
|
||||
|
@ -245,7 +245,7 @@ pub trait AsciiExt {
|
||||
fn is_ascii_punctuation(&self) -> bool { unimplemented!(); }
|
||||
|
||||
/// Checks if the value is an ASCII graphic character:
|
||||
/// U+0021 '@' ... U+007E '~'.
|
||||
/// U+0021 '!' ... U+007E '~'.
|
||||
/// For strings, true if all characters in the string are
|
||||
/// ASCII graphic characters.
|
||||
///
|
||||
|
@ -1332,7 +1332,7 @@ impl char {
|
||||
}
|
||||
|
||||
/// Checks if the value is an ASCII graphic character:
|
||||
/// U+0021 '@' ... U+007E '~'.
|
||||
/// U+0021 '!' ... U+007E '~'.
|
||||
///
|
||||
/// # Examples
|
||||
///
|
||||
|
Loading…
Reference in New Issue
Block a user