diff --git a/src/libcore/iter.rs b/src/libcore/iter.rs index 16ee38898803f..24ef8a6e01ac2 100644 --- a/src/libcore/iter.rs +++ b/src/libcore/iter.rs @@ -2246,8 +2246,9 @@ impl RandomAccessIterator for Fuse where I: RandomAccessIterator { impl ExactSizeIterator for Fuse where I: ExactSizeIterator {} impl Fuse { - /// Resets the fuse such that the next call to .next() or .next_back() will - /// call the underlying iterator again even if it previously returned None. + /// Resets the `Fuse` such that the next call to `.next()` or + /// `.next_back()` will call the underlying iterator again even if it + /// previously returned `None`. #[inline] #[unstable(feature = "core", reason = "seems marginal")] pub fn reset_fuse(&mut self) {