Update docs to say iterator instead of range

This commit is contained in:
Matt Brubeck 2017-06-07 09:24:35 -07:00
parent a69cc85909
commit b6193f3c00

View File

@ -262,7 +262,7 @@ pub trait Iterator {
/// Creates an iterator starting at the same point, but stepping by /// Creates an iterator starting at the same point, but stepping by
/// the given amount at each iteration. /// 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. /// regardless of the step given.
/// ///
/// # Panics /// # Panics