Fix doc typo for is_ascii_graphic

Fixes #47067.
This commit is contained in:
varkor 2017-12-30 21:27:43 +00:00
parent 0296b7165b
commit e154e33add

View file

@ -247,7 +247,7 @@ pub trait AsciiExt {
/// Checks if the value is an ASCII graphic character:
/// U+0021 '@' ... U+007E '~'.
/// For strings, true if all characters in the string are
/// ASCII punctuation.
/// ASCII graphic characters.
///
/// # Note
///