about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatej Lach <matej.lach@gmail.com>2014-09-24 13:35:33 +0100
committerMatej Lach <matej.lach@gmail.com>2014-09-24 13:35:33 +0100
commit5a25537faf5863897f255a4f85dc0a8953dc3a58 (patch)
tree939b14b724260dd432dff202378a9eb84b1cebb7
parentd853666c7b1c046ecacb5d40e5e7722e9757abf0 (diff)
downloadrust-5a25537faf5863897f255a4f85dc0a8953dc3a58.tar.gz
rust-5a25537faf5863897f255a4f85dc0a8953dc3a58.zip
Correct typo in the Iterator adapters section
-rw-r--r--src/doc/guide.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/guide.md b/src/doc/guide.md
index 6a27cf2f1ef..271d0bba924 100644
--- a/src/doc/guide.md
+++ b/src/doc/guide.md
@@ -4489,7 +4489,7 @@ This will print
 ```
 
 `filter()` is an adapter that takes a closure as an argument. This closure
-returns `true` or `false`. The new iterator `filter()` produces returns
+returns `true` or `false`. The new iterator `filter()` produces
 only the elements that that closure returned `true` for:
 
 ```{rust}