From d2ed11862c5abe175ca158bece81b77663d69306 Mon Sep 17 00:00:00 2001 From: Corey Farwell Date: Sat, 18 Apr 2015 11:55:40 -0400 Subject: [PATCH] Indicate keywords are code-like in Fuse::reset_fuse doc comment --- src/libcore/iter.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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) {