From b6193f3c005e52e93b00d2d69eea96b4b91d002b Mon Sep 17 00:00:00 2001 From: Matt Brubeck Date: Wed, 7 Jun 2017 09:24:35 -0700 Subject: [PATCH] Update docs to say iterator instead of range --- src/libcore/iter/iterator.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/iter/iterator.rs b/src/libcore/iter/iterator.rs index 85149a0f57078..30d09e5453b37 100644 --- a/src/libcore/iter/iterator.rs +++ b/src/libcore/iter/iterator.rs @@ -262,7 +262,7 @@ pub trait Iterator { /// Creates an iterator starting at the same point, but stepping by /// the given amount at each iteration. /// - /// Note that it will always return the first element of the range, + /// Note that it will always return the first element of the iterator, /// regardless of the step given. /// /// # Panics