about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-04-04 15:51:03 +0000
committerbors <bors@rust-lang.org>2015-04-04 15:51:03 +0000
commitb3315881f53d6a708190d8dfd7305603a25d6b4c (patch)
tree58f91154d91887c5ccbf4d35d29941bdecc519ca /src
parent04e0125a582722b1ae3233d4012b0b65209d3060 (diff)
parent06bc99918c8add2e2a265cd5dbc99555a464c19d (diff)
downloadrust-b3315881f53d6a708190d8dfd7305603a25d6b4c.tar.gz
rust-b3315881f53d6a708190d8dfd7305603a25d6b4c.zip
Auto merge of #23987 - liammonahan:master, r=Manishearth
I ran across a comma splice.

I didn't set the "note:" off inside parenthesis.  I looked around in other places and saw it both ways, but without surrounding parenthesis seemed to be the more common convention followed elsewhere in the docs.  Let me know if you have an overriding preference about that and I'll change it.

r? @steveklabnik
Diffstat (limited to 'src')
-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: