diff options
| author | Steve Klabnik <steve@steveklabnik.com> | 2015-10-08 13:54:05 -0400 |
|---|---|---|
| committer | Steve Klabnik <steve@steveklabnik.com> | 2015-10-08 13:54:05 -0400 |
| commit | 1625c133de832c8350d5e6c9d39510959ffbe5e6 (patch) | |
| tree | 8b92e8168061f72c1db7f8015939ecbc28445054 | |
| parent | 17819aa8f35453849dd98ef14a479f27b84afad5 (diff) | |
| parent | f18d1ad32469ca87452e701ab6ec636b79112070 (diff) | |
| download | rust-1625c133de832c8350d5e6c9d39510959ffbe5e6.tar.gz rust-1625c133de832c8350d5e6c9d39510959ffbe5e6.zip | |
Rollup merge of #28910 - frewsxcv:patch-26, r=steveklabnik
| -rw-r--r-- | src/libcore/iter.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/iter.rs b/src/libcore/iter.rs index 00c7773fd8b..3554325d0db 100644 --- a/src/libcore/iter.rs +++ b/src/libcore/iter.rs @@ -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 |
