doc: the last mention of the word 'iterator' is redundant

This commit is contained in:
Tshepang Lekhonkhobe 2015-02-26 23:22:15 +02:00
parent a5214e4330
commit 6b01f7ac05

View file

@ -171,8 +171,7 @@ fn count(self) -> usize {
self.fold(0, |cnt, _x| cnt + 1)
}
/// Loops through the entire iterator, returning the last element of the
/// iterator.
/// Loops through the entire iterator, returning the last element.
///
/// # Examples
///