Rollup merge of #42510 - mbrubeck:docs, r=QuietMisdreavus

Update step_by docs to say iterator instead of range

None
This commit is contained in:
Corey Farwell 2017-06-07 21:58:45 -04:00 committed by GitHub
commit a04eefb66a
1 changed files with 1 additions and 1 deletions

View File

@ -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