about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLiam Monahan <liam@monahan.io>2015-04-02 20:02:57 -0400
committerLiam Monahan <liam@monahan.io>2015-04-02 20:02:57 -0400
commit06bc99918c8add2e2a265cd5dbc99555a464c19d (patch)
treef6b0a70e610296aa86218989dbf0c2ec49542574
parentd1835ae7cc175b9aff383432e934e7ad13825ebc (diff)
downloadrust-06bc99918c8add2e2a265cd5dbc99555a464c19d.tar.gz
rust-06bc99918c8add2e2a265cd5dbc99555a464c19d.zip
doc/trpl: Fixing a comma splice in iterators.md.
-rw-r--r--src/doc/trpl/iterators.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/iterators.md b/src/doc/trpl/iterators.md
index 55776bee3b5..eea575658b9 100644
--- a/src/doc/trpl/iterators.md
+++ b/src/doc/trpl/iterators.md
@@ -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: