We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4be488c commit fcb3a71Copy full SHA for fcb3a71
src/libcore/iter/mod.rs
@@ -520,7 +520,7 @@ impl<I> Iterator for Cycle<I> where I: Clone + Iterator {
520
#[unstable(feature = "fused", issue = "35602")]
521
impl<I> FusedIterator for Cycle<I> where I: Clone + Iterator {}
522
523
-/// An iterator that steps by n elements every iteration.
+/// An adapter for stepping iterators by a custom amount.
524
///
525
/// This `struct` is created by the [`step_by`] method on [`Iterator`]. See
526
/// its documentation for more.
0 commit comments