We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fcf637b commit d2ed118Copy full SHA for d2ed118
src/libcore/iter.rs
@@ -2246,8 +2246,9 @@ impl<I> RandomAccessIterator for Fuse<I> where I: RandomAccessIterator {
2246
impl<I> ExactSizeIterator for Fuse<I> where I: ExactSizeIterator {}
2247
2248
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.
+ /// Resets the `Fuse` such that the next call to `.next()` or
+ /// `.next_back()` will call the underlying iterator again even if it
2251
+ /// previously returned `None`.
2252
#[inline]
2253
#[unstable(feature = "core", reason = "seems marginal")]
2254
pub fn reset_fuse(&mut self) {
0 commit comments