about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2017-03-13 06:20:10 +0000
committerbors <bors@rust-lang.org>2017-03-13 06:20:10 +0000
commit40e5b18609c015cf6e331a08aa1e2f13c0d52b82 (patch)
tree0bd574950186533c2ae9a97f7fe9c660aa766b85 /src/libcore
parent75fb56f152ad4811cff5f604a90073c0fab1256f (diff)
parent9eff235beb3c5161440a0c99fceb1455f95a0230 (diff)
downloadrust-40e5b18609c015cf6e331a08aa1e2f13c0d52b82.tar.gz
rust-40e5b18609c015cf6e331a08aa1e2f13c0d52b82.zip
Auto merge of #40461 - stjepang:iterator-typo, r=frewsxcv
Fix a typo in Rev iterator docs

r? @GuillaumeGomez
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/iter/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/iter/mod.rs b/src/libcore/iter/mod.rs
index d9b8c5ea589..df4aef08871 100644
--- a/src/libcore/iter/mod.rs
+++ b/src/libcore/iter/mod.rs
@@ -336,7 +336,7 @@ mod range;
 mod sources;
 mod traits;
 
-/// An double-ended iterator with the direction inverted.
+/// A double-ended iterator with the direction inverted.
 ///
 /// This `struct` is created by the [`rev()`] method on [`Iterator`]. See its
 /// documentation for more.