From 24f06e66641f02566c882b30ed50d213436a28ce Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Sun, 5 Apr 2015 18:54:07 +0200 Subject: [PATCH] Remove external iterator in CharIndices comment and the reference to the std::iter module --- src/libcore/str/mod.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/libcore/str/mod.rs b/src/libcore/str/mod.rs index dbb365c4e2357..471e3c5ea6736 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> {