doc/trpl: Fixing a comma splice in iterators.md.

This commit is contained in:
Liam Monahan 2015-04-02 20:02:57 -04:00
parent d1835ae7cc
commit 06bc99918c
1 changed files with 1 additions and 1 deletions

View File

@ -291,7 +291,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
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 from before: