Skip to content

Commit 4ad1d6a

Browse files
JohnTitorgitbot
authored and
gitbot
committed
Rollup merge of rust-lang#86111 - spookyvision:master, r=JohnTitor
fix off by one in `std::iter::Iterator` documentation the range `(0..10)` is documented as "The even numbers from zero to ten." - should be ".. to nine".
2 parents c9310ef + 7179a4a commit 4ad1d6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/iter/traits/iterator.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ pub trait Iterator {
138138
/// A more complex example:
139139
///
140140
/// ```
141-
/// // The even numbers from zero to ten.
141+
/// // The even numbers in the range of zero to nine.
142142
/// let iter = (0..10).filter(|x| x % 2 == 0);
143143
///
144144
/// // We might iterate from zero to ten times. Knowing that it's five

0 commit comments

Comments
 (0)