Fix typo in size_hint example comment

This commit is contained in:
Martin Glagla 2017-05-11 20:38:15 +02:00
parent 2cc3358e4f
commit 641d05353a
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ pub trait Iterator {
/// // exactly wouldn't be possible without executing filter().
/// assert_eq!((0, Some(10)), iter.size_hint());
///
/// // Let's add one five more numbers with chain()
/// // Let's add five more numbers with chain()
/// let iter = (0..10).filter(|x| x % 2 == 0).chain(15..20);
///
/// // now both bounds are increased by five