Skip to content

Commit d3c6321

Browse files
authored
Rollup merge of rust-lang#76778 - pickfire:patch-7, r=jonas-schievink
Simplify iter fuse struct doc
2 parents cd766c9 + 1dc4f85 commit d3c6321

File tree

1 file changed

+2
-5
lines changed
  • library/core/src/iter/adapters

1 file changed

+2
-5
lines changed

library/core/src/iter/adapters/fuse.rs

+2-5
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,8 @@ use crate::ops::Try;
99
/// An iterator that yields `None` forever after the underlying iterator
1010
/// yields `None` once.
1111
///
12-
/// This `struct` is created by the [`fuse`] method on [`Iterator`]. See its
13-
/// documentation for more.
14-
///
15-
/// [`fuse`]: trait.Iterator.html#method.fuse
16-
/// [`Iterator`]: trait.Iterator.html
12+
/// This `struct` is created by [`Iterator::fuse`]. See its documentation
13+
/// for more.
1714
#[derive(Clone, Debug)]
1815
#[must_use = "iterators are lazy and do nothing unless consumed"]
1916
#[stable(feature = "rust1", since = "1.0.0")]

0 commit comments

Comments
 (0)