diff options
| author | bors <bors@rust-lang.org> | 2017-11-14 16:18:19 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2017-11-14 16:18:19 +0000 |
| commit | dbeb5bf890211608bff5d28c3801c1a217a78d81 (patch) | |
| tree | 8af03b854cd599a9fdba0c750f3f9988e4183a1e /src/libstd | |
| parent | 9cd994cdc192e09a4b1028e828d6c3343364f37f (diff) | |
| parent | 66d0537ebe5441f740adb1c7f6b4eab5ee1801f1 (diff) | |
Auto merge of #45981 - GuillaumeGomez:rollup, r=GuillaumeGomez
Rollup of 7 pull requests - Successful merges: #45815, #45941, #45950, #45961, #45967, #45970, #45977 - Failed merges:
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/io/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/io/mod.rs b/src/libstd/io/mod.rs index dec281212a5..57f8c39756e 100644 --- a/src/libstd/io/mod.rs +++ b/src/libstd/io/mod.rs @@ -737,7 +737,7 @@ pub trait Read { /// Transforms this `Read` instance to an [`Iterator`] over its bytes. /// /// The returned type implements [`Iterator`] where the `Item` is - /// [`Result`]`<`[`u8`]`, `[`io::Error`]>`. + /// [`Result`]`<`[`u8`]`, `[`io::Error`]`>`. /// The yielded item is [`Ok`] if a byte was successfully read and [`Err`] /// otherwise. EOF is mapped to returning [`None`] from this iterator. /// @@ -748,7 +748,7 @@ pub trait Read { /// [file]: ../fs/struct.File.html /// [`Iterator`]: ../../std/iter/trait.Iterator.html /// [`Result`]: ../../std/result/enum.Result.html - /// [`io::Error``]: ../../std/io/struct.Error.html + /// [`io::Error`]: ../../std/io/struct.Error.html /// [`u8`]: ../../std/primitive.u8.html /// [`Ok`]: ../../std/result/enum.Result.html#variant.Ok /// [`Err`]: ../../std/result/enum.Result.html#variant.Err |
