Rollup merge of #28910 - frewsxcv:patch-26, r=steveklabnik

This commit is contained in:
Steve Klabnik 2015-10-08 13:54:05 -04:00
commit 1625c133de
1 changed files with 1 additions and 1 deletions

View File

@ -935,7 +935,7 @@ pub trait Iterator {
/// Creates an iterator that clones the elements it yields.
///
/// This is useful for converting an Iterator<&T> to an Iterator<T>,
/// This is useful for converting an `Iterator<&T>` to an`Iterator<T>`,
/// so it's a more convenient form of `map(|&x| x)`.
///
/// # Examples