We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cc3358 commit 641d053Copy full SHA for 641d053
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