about summary refs log tree commit diff
path: root/src/libcore/iter
diff options
context:
space:
mode:
authorOliver Middleton <olliemail27@gmail.com>2017-01-27 18:08:51 +0000
committerOliver Middleton <olliemail27@gmail.com>2017-01-27 18:08:51 +0000
commit09b3903aecf2c8cafa62cb67eccbe10a3ca09b5d (patch)
tree8a2da1f4744b3171c52e426d73faf982156189ab /src/libcore/iter
parent8367fb7ba6abae89ab7e17c1b3987ee321f5bb71 (diff)
downloadrust-09b3903aecf2c8cafa62cb67eccbe10a3ca09b5d.tar.gz
rust-09b3903aecf2c8cafa62cb67eccbe10a3ca09b5d.zip
Fix a few links in the docs
Diffstat (limited to 'src/libcore/iter')
-rw-r--r--src/libcore/iter/iterator.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libcore/iter/iterator.rs b/src/libcore/iter/iterator.rs
index 91c09c55305..3b406873d4b 100644
--- a/src/libcore/iter/iterator.rs
+++ b/src/libcore/iter/iterator.rs
@@ -1108,9 +1108,9 @@ 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
-    /// below for more.
+    /// is a collection of [`char`]s. And a collection of
+    /// [`Result<T, E>`][`Result`] can be thought of as single
+    /// [`Result`]`<Collection<T>, E>`. See the examples below for more.
     ///
     /// Because `collect()` is so general, it can cause problems with type
     /// inference. As such, `collect()` is one of the few times you'll see