We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7dc654c commit 8af15dbCopy full SHA for 8af15db
library/core/src/iter/traits/iterator.rs
@@ -982,7 +982,7 @@ pub trait Iterator {
982
///
983
/// let mut iter = xs.iter().peekable();
984
985
- /// // peek_mut() lets us see into the future
+ /// // `peek_mut()` lets us see into the future
986
/// assert_eq!(iter.peek_mut(), Some(&mut &1));
987
988
/// assert_eq!(iter.next(), Some(&1));
0 commit comments