1
Fork 0

Add missing doc link

This commit is contained in:
Guillaume Gomez 2018-11-27 09:59:44 +01:00
parent 45205f2ac1
commit 6739c0e935

View file

@ -519,7 +519,7 @@ pub trait Iterator {
/// element. /// element.
/// ///
/// `map()` transforms one iterator into another, by means of its argument: /// `map()` transforms one iterator into another, by means of its argument:
/// something that implements `FnMut`. It produces a new iterator which /// something that implements [`FnMut`]. It produces a new iterator which
/// calls this closure on each element of the original iterator. /// calls this closure on each element of the original iterator.
/// ///
/// If you are good at thinking in types, you can think of `map()` like this: /// If you are good at thinking in types, you can think of `map()` like this:
@ -533,6 +533,7 @@ pub trait Iterator {
/// more idiomatic to use [`for`] than `map()`. /// more idiomatic to use [`for`] than `map()`.
/// ///
/// [`for`]: ../../book/ch03-05-control-flow.html#looping-through-a-collection-with-for /// [`for`]: ../../book/ch03-05-control-flow.html#looping-through-a-collection-with-for
/// [`FnMut`]: ../../std/ops/trait.FnMut.html
/// ///
/// # Examples /// # Examples
/// ///