We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcf637b commit a89d768Copy full SHA for a89d768
src/libcore/iter.rs
@@ -2246,8 +2246,8 @@ 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 previously returned `None`.
2251
#[inline]
2252
#[unstable(feature = "core", reason = "seems marginal")]
2253
pub fn reset_fuse(&mut self) {
0 commit comments