Skip to content

Commit d2ed118

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

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/libcore/iter.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -2246,8 +2246,9 @@ 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
2250+
/// `.next_back()` will call the underlying iterator again even if it
2251+
/// previously returned `None`.
22512252
#[inline]
22522253
#[unstable(feature = "core", reason = "seems marginal")]
22532254
pub fn reset_fuse(&mut self) {

0 commit comments

Comments
 (0)