Auto merge of #47079 - varkor:contrib-11, r=Mark-Simulacrum

Fix doc typo for is_ascii_graphic

Fixes #47067.
This commit is contained in:
bors 2017-12-31 07:29:16 +00:00
commit a18dea908c

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