Skip to content

Commit beb2240

Browse files
authored
Rollup merge of #102263 - GuillaumeGomez:iterator-rposition-example, r=thomcc
Clarify Iterator::rposition code example Fixes #101095. r? `@thomcc`
2 parents c807277 + a20672c commit beb2240

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

library/core/src/iter/traits/iterator.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -2906,14 +2906,14 @@ pub trait Iterator {
29062906
/// Stopping at the first `true`:
29072907
///
29082908
/// ```
2909-
/// let a = [1, 2, 3];
2909+
/// let a = [-1, 2, 3, 4];
29102910
///
29112911
/// let mut iter = a.iter();
29122912
///
2913-
/// assert_eq!(iter.rposition(|&x| x == 2), Some(1));
2913+
/// assert_eq!(iter.rposition(|&x| x >= 2), Some(3));
29142914
///
29152915
/// // we can still use `iter`, as there are more elements.
2916-
/// assert_eq!(iter.next(), Some(&1));
2916+
/// assert_eq!(iter.next(), Some(&-1));
29172917
/// ```
29182918
#[inline]
29192919
#[stable(feature = "rust1", since = "1.0.0")]

0 commit comments

Comments
 (0)