diff --git a/src/libcore/iter.rs b/src/libcore/iter.rs index 2968d63454457..3382095b4560f 100644 --- a/src/libcore/iter.rs +++ b/src/libcore/iter.rs @@ -148,8 +148,7 @@ pub trait Iterator { last } - /// Loops through `n` iterations, returning the `n`th element of the - /// iterator. + /// Skips the `n` first elements of the iterator and returns the next one. /// /// # Examples ///