about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-04-19 05:46:47 +0000
committerbors <bors@rust-lang.org>2015-04-19 05:46:47 +0000
commit049de3fe7f61d6ae5e6079981ed8e0e7701ea28e (patch)
tree039d2bc0982ae715762580d632cc098042cac0bd
parentbd968a1d658da95f78b972fce6aae956eeedc37b (diff)
parentd2ed11862c5abe175ca158bece81b77663d69306 (diff)
downloadrust-049de3fe7f61d6ae5e6079981ed8e0e7701ea28e.tar.gz
rust-049de3fe7f61d6ae5e6079981ed8e0e7701ea28e.zip
Auto merge of #24555 - frewsxcv:patch-14, r=steveklabnik
-rw-r--r--src/libcore/iter.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libcore/iter.rs b/src/libcore/iter.rs
index 16ee3889880..24ef8a6e01a 100644
--- a/src/libcore/iter.rs
+++ b/src/libcore/iter.rs
@@ -2246,8 +2246,9 @@ impl<I> RandomAccessIterator for Fuse<I> where I: RandomAccessIterator {
 impl<I> ExactSizeIterator for Fuse<I> where I: ExactSizeIterator {}
 
 impl<I> Fuse<I> {
-    /// 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) {