Fix some broken and missing links in the docs

This commit is contained in:
Oliver Middleton
2016-01-13 23:19:24 +00:00
parent d3c83fef24
commit 01cbdf4481
6 changed files with 27 additions and 24 deletions

View File

@@ -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