about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2016-01-14 13:42:59 +0000
committerbors <bors@rust-lang.org>2016-01-14 13:42:59 +0000
commit02fbf31fb26e0b5eccf34cef8a5f8becef6f3ada (patch)
tree554d5d05b0c5f4baee9180cdec5fffd98c10239b /src/libcore
parent5b3a75fe560362b812f2c4947d449558a9472496 (diff)
parenta964c86d45577f089507a8ecf3e1dc6486166ac2 (diff)
downloadrust-02fbf31fb26e0b5eccf34cef8a5f8becef6f3ada.tar.gz
rust-02fbf31fb26e0b5eccf34cef8a5f8becef6f3ada.zip
Auto merge of #30897 - Manishearth:rollup, r=Manishearth
- Successful merges: #30821, #30869, #30871, #30874, #30879, #30886, #30892
- Failed merges: #30864
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/iter.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/iter.rs b/src/libcore/iter.rs
index c3bea050558..e3e783329ec 100644
--- a/src/libcore/iter.rs
+++ b/src/libcore/iter.rs
@@ -1358,7 +1358,7 @@ pub trait Iterator {
     /// One of the keys to `collect()`'s power is that many things you might
     /// not think of as 'collections' actually are. For example, a [`String`]
     /// is a collection of [`char`]s. And a collection of [`Result<T, E>`] can
-    /// be thought of as single [`Result<Collection<T>, E>`]. See the examples
+    /// be thought of as single `Result<Collection<T>, E>`. See the examples
     /// below for more.
     ///
     /// [`String`]: ../string/struct.String.html