about summary refs log tree commit diff
path: root/src/libstd/ascii.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstd/ascii.rs')
-rw-r--r--src/libstd/ascii.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/ascii.rs b/src/libstd/ascii.rs
index 92507a73bae..82e1a3447dc 100644
--- a/src/libstd/ascii.rs
+++ b/src/libstd/ascii.rs
@@ -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
     ///