about summary refs log tree commit diff
path: root/src/doc/guide.md
diff options
context:
space:
mode:
Diffstat (limited to 'src/doc/guide.md')
-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 6e178a2648d..c44cc86a8a2 100644
--- a/src/doc/guide.md
+++ b/src/doc/guide.md
@@ -4418,7 +4418,7 @@ for i in range(0u, nums.len()) {
 ```
 
 This is strictly worse than using an actual iterator. The `.iter()` method on
-vectors returns an iterator which iterates through a reference to each element
+vectors returns an iterator that iterates through a reference to each element
 of the vector in turn. So write this:
 
 ```{rust}