diff options
| author | bors <bors@rust-lang.org> | 2015-04-05 22:18:29 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-04-05 22:18:29 +0000 |
| commit | be9bd7c93a53fe554a359e60c5f78991fb783eed (patch) | |
| tree | 09912c4d8521613a48dcf695828fe0ada1dc0e5c | |
| parent | de6742bb1cf43e7e11d16de8c0fb6386e06e7496 (diff) | |
| parent | 24f06e66641f02566c882b30ed50d213436a28ce (diff) | |
| download | rust-be9bd7c93a53fe554a359e60c5f78991fb783eed.tar.gz rust-be9bd7c93a53fe554a359e60c5f78991fb783eed.zip | |
Auto merge of #24093 - GuillaumeGomez:typo, r=steveklabnik
Fixes #24080.
| -rw-r--r-- | src/libcore/str/mod.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libcore/str/mod.rs b/src/libcore/str/mod.rs index dbb365c4e23..471e3c5ea67 100644 --- a/src/libcore/str/mod.rs +++ b/src/libcore/str/mod.rs @@ -389,8 +389,7 @@ impl<'a> DoubleEndedIterator for Chars<'a> { } } -/// External iterator for a string's characters and their byte offsets. -/// Use with the `std::iter` module. +/// Iterator for a string's characters and their byte offsets. #[derive(Clone)] #[stable(feature = "rust1", since = "1.0.0")] pub struct CharIndices<'a> { |
