about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWilly Aguirre <marti1125@gmail.com>2015-09-28 10:46:50 -0500
committerWilly Aguirre <marti1125@gmail.com>2015-09-28 10:46:50 -0500
commite1acf87fe0fe3b64be0750dc7d1244558a626a91 (patch)
tree1da71c56077b56ad43bb317e3450757db3d30585
parent219eca11b044de3644b3e9101124513c1a842b09 (diff)
downloadrust-e1acf87fe0fe3b64be0750dc7d1244558a626a91.tar.gz
rust-e1acf87fe0fe3b64be0750dc7d1244558a626a91.zip
remove a sentence #28701
-rw-r--r--src/doc/trpl/iterators.md3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/doc/trpl/iterators.md b/src/doc/trpl/iterators.md
index b52e0fefa57..6d1e66b6733 100644
--- a/src/doc/trpl/iterators.md
+++ b/src/doc/trpl/iterators.md
@@ -281,8 +281,7 @@ If you are trying to execute a closure on an iterator for its side effects,
 just use `for` instead.
 
 There are tons of interesting iterator adapters. `take(n)` will return an
-iterator over the next `n` elements of the original iterator. Note that this
-has no side effect on the original iterator. Let's try it out with our infinite
+iterator over the next `n` elements of the original iterator. Let's try it out with our infinite
 iterator from before:
 
 ```rust