diff options
| author | Willy Aguirre <marti1125@gmail.com> | 2015-09-28 10:46:50 -0500 |
|---|---|---|
| committer | Willy Aguirre <marti1125@gmail.com> | 2015-09-28 10:46:50 -0500 |
| commit | e1acf87fe0fe3b64be0750dc7d1244558a626a91 (patch) | |
| tree | 1da71c56077b56ad43bb317e3450757db3d30585 | |
| parent | 219eca11b044de3644b3e9101124513c1a842b09 (diff) | |
| download | rust-e1acf87fe0fe3b64be0750dc7d1244558a626a91.tar.gz rust-e1acf87fe0fe3b64be0750dc7d1244558a626a91.zip | |
remove a sentence #28701
| -rw-r--r-- | src/doc/trpl/iterators.md | 3 |
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 |
