Fixes docs for ASCII functions to no longer claim U+0021 is '@'.

This commit is contained in:
Nathan Ringo 2018-02-24 23:48:51 -06:00
parent 026339e42b
commit 64236092e5
No known key found for this signature in database
GPG Key ID: 3208D2FE5E229746
3 changed files with 3 additions and 3 deletions

View File

@ -2892,7 +2892,7 @@ impl u8 {
}
/// Checks if the value is an ASCII graphic character:
/// U+0021 '@' ... U+007E '~'.
/// U+0021 '!' ... U+007E '~'.
///
/// # Examples
///

View File

@ -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.
///

View File

@ -1332,7 +1332,7 @@ impl char {
}
/// Checks if the value is an ASCII graphic character:
/// U+0021 '@' ... U+007E '~'.
/// U+0021 '!' ... U+007E '~'.
///
/// # Examples
///