Skip to content

Commit

Permalink
Indicate keywords are code-like in Fuse::reset_fuse doc comment
Browse files Browse the repository at this point in the history
  • Loading branch information
frewsxcv committed Apr 18, 2015
1 parent fcf637b commit d2ed118
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/libcore/iter.rs
Expand Up @@ -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) {
Expand Down

0 comments on commit d2ed118

Please sign in to comment.