Skip to content

Commit

Permalink
doc/trpl: Fixing a comma splice in iterators.md.
Browse files Browse the repository at this point in the history
  • Loading branch information
liammonahan committed Apr 3, 2015
1 parent d1835ae commit 06bc999
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doc/trpl/iterators.md
Expand Up @@ -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:

Expand Down

0 comments on commit 06bc999

Please sign in to comment.