diff options
| author | bors <bors@rust-lang.org> | 2017-12-31 07:29:16 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2017-12-31 07:29:16 +0000 |
| commit | a18dea908ca2a89cc1c7f4b0416924382ca145e6 (patch) | |
| tree | 94ea42f1ddc8a4b36b94fd92817ff6533658e4b6 /src/libstd | |
| parent | 2d74ce292ef067dc280046b7a43f89c1c711d005 (diff) | |
| parent | e154e33add460a2a87036f0d37068c09b2ebdd6f (diff) | |
| download | rust-a18dea908ca2a89cc1c7f4b0416924382ca145e6.tar.gz rust-a18dea908ca2a89cc1c7f4b0416924382ca145e6.zip | |
Auto merge of #47079 - varkor:contrib-11, r=Mark-Simulacrum
Fix doc typo for is_ascii_graphic Fixes #47067.
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/ascii.rs | 2 |
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 /// |
