Skip to content

Commit 8af15db

Browse files
lukasluegJohnTitor
andauthored
Update library/core/src/iter/traits/iterator.rs
Co-authored-by: Yuki Okushi <[email protected]>
1 parent 7dc654c commit 8af15db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -982,7 +982,7 @@ pub trait Iterator {
982982
///
983983
/// let mut iter = xs.iter().peekable();
984984
///
985-
/// // peek_mut() lets us see into the future
985+
/// // `peek_mut()` lets us see into the future
986986
/// assert_eq!(iter.peek_mut(), Some(&mut &1));
987987
/// assert_eq!(iter.peek_mut(), Some(&mut &1));
988988
/// assert_eq!(iter.next(), Some(&1));

0 commit comments

Comments
 (0)