From fcb3a7109c84f48c4f60504255dd3f375818fdfd Mon Sep 17 00:00:00 2001 From: Scott McMurray Date: Sat, 20 May 2017 18:32:43 -0700 Subject: [PATCH] Update description of iter::StepBy --- src/libcore/iter/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/iter/mod.rs b/src/libcore/iter/mod.rs index a3b755a38f3..f87bbfbd7d9 100644 --- a/src/libcore/iter/mod.rs +++ b/src/libcore/iter/mod.rs @@ -520,7 +520,7 @@ fn size_hint(&self) -> (usize, Option) { #[unstable(feature = "fused", issue = "35602")] impl FusedIterator for Cycle where I: Clone + Iterator {} -/// An iterator that steps by n elements every iteration. +/// An adapter for stepping iterators by a custom amount. /// /// This `struct` is created by the [`step_by`] method on [`Iterator`]. See /// its documentation for more. -- 2.44.0