Skip to content

Commit a89d768

Browse files
committed
Indicate keywords are code-like in Fuse::reset_fuse doc comment
1 parent fcf637b commit a89d768

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libcore/iter.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2246,8 +2246,8 @@ impl<I> RandomAccessIterator for Fuse<I> where I: RandomAccessIterator {
22462246
impl<I> ExactSizeIterator for Fuse<I> where I: ExactSizeIterator {}
22472247

22482248
impl<I> Fuse<I> {
2249-
/// Resets the fuse such that the next call to .next() or .next_back() will
2250-
/// call the underlying iterator again even if it previously returned None.
2249+
/// Resets the `Fuse` such that the next call to `.next()` or `.next_back()` will call the
2250+
/// underlying iterator again even if it previously returned `None`.
22512251
#[inline]
22522252
#[unstable(feature = "core", reason = "seems marginal")]
22532253
pub fn reset_fuse(&mut self) {

0 commit comments

Comments
 (0)