about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-05-14 19:33:09 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-05-14 19:33:09 +0530
commitff207b7a0526a0ad08a4eef58e47447671eeefcd (patch)
treea0cb41087798d920508061427cbf6e5b30adff14 /src
parent0cbef048173f8b1bc6be1bd9ea64a9f07e737bd4 (diff)
parentf539c416a0ef87c645de26b67e01a047afcb0b2a (diff)
downloadrust-ff207b7a0526a0ad08a4eef58e47447671eeefcd.tar.gz
rust-ff207b7a0526a0ad08a4eef58e47447671eeefcd.zip
Rollup merge of #25397 - dreid:patch-2, r=alexcrichton
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 e0cc45c254b..a93f622e9c5 100644
--- a/src/doc/trpl/iterators.md
+++ b/src/doc/trpl/iterators.md
@@ -42,7 +42,7 @@ loop is just a handy way to write this `loop`/`match`/`break` construct.
 `for` loops aren't the only thing that uses iterators, however. Writing your
 own iterator involves implementing the `Iterator` trait. While doing that is
 outside of the scope of this guide, Rust provides a number of useful iterators
-to accomplish various threads. Before we talk about those, we should talk about a
+to accomplish various tasks. Before we talk about those, we should talk about a
 Rust anti-pattern. And that's using ranges like this.
 
 Yes, we just talked about how ranges are cool. But ranges are also very