diff options
| author | Yuki Okushi <huyuumi.dev@gmail.com> | 2020-02-17 13:46:48 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-17 13:46:48 +0900 |
| commit | 5f818f94e762a6a371b3ecc5261facf4952bf432 (patch) | |
| tree | 0948d25d3ad0225e669ac025142eef2cbe065496 /src | |
| parent | a643ee8d693b8100e6f54f2a01ff7cde05eb65c5 (diff) | |
| parent | ac19dffd1eaea34c3861324c2588f9cb1f1489f5 (diff) | |
Rollup merge of #68495 - sdegutis:patch-1, r=Mark-Simulacrum
Updating str.chars docs to mention crates.io. This might spare someone else a little time searching the stdlib for unicode/grapheme support.
Diffstat (limited to 'src')
| -rw-r--r-- | src/libcore/str/mod.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libcore/str/mod.rs b/src/libcore/str/mod.rs index 734b3ba7c6b..e5b8412e117 100644 --- a/src/libcore/str/mod.rs +++ b/src/libcore/str/mod.rs @@ -2658,7 +2658,8 @@ impl str { /// /// It's important to remember that [`char`] represents a Unicode Scalar /// Value, and may not match your idea of what a 'character' is. Iteration - /// over grapheme clusters may be what you actually want. + /// over grapheme clusters may be what you actually want. This functionality + /// is not provided by Rust's standard library, check crates.io instead. /// /// # Examples /// |
