Skip to content

Commit 06bc999

Browse files
committed
doc/trpl: Fixing a comma splice in iterators.md.
1 parent d1835ae commit 06bc999

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc/trpl/iterators.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ If you are trying to execute a closure on an iterator for its side effects,
291291
just use `for` instead.
292292

293293
There are tons of interesting iterator adapters. `take(n)` will return an
294-
iterator over the next `n` elements of the original iterator, note that this
294+
iterator over the next `n` elements of the original iterator. Note that this
295295
has no side effect on the original iterator. Let's try it out with our infinite
296296
iterator from before:
297297

0 commit comments

Comments
 (0)