about summary refs log tree commit diff
diff options
context:
space:
mode:
authorChristoffer Buchholz <chris@chrisbuchholz.me>2015-12-15 08:49:57 +0100
committerChristoffer Buchholz <chris@chrisbuchholz.me>2015-12-15 08:49:57 +0100
commit5538c6b19837a418e73aebda6ad18ae90d52b8d7 (patch)
treefd88c62e9d0cace4229b2647b58a5171ef46af28
parent5cf6253da15019e4d41bd8ff5189d15d32101058 (diff)
downloadrust-5538c6b19837a418e73aebda6ad18ae90d52b8d7.tar.gz
rust-5538c6b19837a418e73aebda6ad18ae90d52b8d7.zip
Clearer leading sentence
-rw-r--r--src/libcore/iter.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcore/iter.rs b/src/libcore/iter.rs
index 4baeec9f754..338305ac6d8 100644
--- a/src/libcore/iter.rs
+++ b/src/libcore/iter.rs
@@ -1113,8 +1113,8 @@ pub trait Iterator {
         Take{iter: self, n: n}
     }
 
-    /// An iterator adaptor similar to [`fold()`] but different because it holds
-    /// internal state and produces a new iterator.
+    /// An iterator adaptor similar to [`fold()`] that holds internal state and
+    /// produces a new iterator.
     ///
     /// [`fold()`]: #method.fold
     ///