We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8b62560 + 641d053 commit 82c3163Copy full SHA for 82c3163
src/libcore/iter/iterator.rs
@@ -119,7 +119,7 @@ pub trait Iterator {
119
/// // exactly wouldn't be possible without executing filter().
120
/// assert_eq!((0, Some(10)), iter.size_hint());
121
///
122
- /// // Let's add one five more numbers with chain()
+ /// // Let's add five more numbers with chain()
123
/// let iter = (0..10).filter(|x| x % 2 == 0).chain(15..20);
124
125
/// // now both bounds are increased by five
0 commit comments