doc/trpl: Fixing a comma splice in iterators.md.
This commit is contained in:
parent
d1835ae7cc
commit
06bc99918c
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue