diff options
| author | kennytm <kennytm@gmail.com> | 2017-11-26 15:01:35 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-11-26 15:01:35 +0800 |
| commit | 4c8cddb11b34021434d8d757e174096b10475840 (patch) | |
| tree | a842314dd0a2ae09317670358c575342fdcc5532 /src/libstd/io | |
| parent | 2cac14e2f99b22cefb2fe07607f1eb0cee920d6a (diff) | |
| parent | 377aaeae2030e3d08a21bb6071c2876a1f0ee776 (diff) | |
| download | rust-4c8cddb11b34021434d8d757e174096b10475840.tar.gz rust-4c8cddb11b34021434d8d757e174096b10475840.zip | |
Rollup merge of #46224 - GuillaumeGomez:io-missing-link, r=QuietMisdreavus
Remove invalid doc link r? @rust-lang/docs
Diffstat (limited to 'src/libstd/io')
| -rw-r--r-- | src/libstd/io/mod.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libstd/io/mod.rs b/src/libstd/io/mod.rs index 54ee8880ec3..b7a3695b470 100644 --- a/src/libstd/io/mod.rs +++ b/src/libstd/io/mod.rs @@ -441,7 +441,7 @@ fn read_to_end<R: Read + ?Sized>(r: &mut R, buf: &mut Vec<u8>) -> Result<usize> /// # } /// ``` /// -/// Read from `&str` because [`&[u8]`] implements [`Read`]: +/// Read from `&str` because [`&[u8]`] implements `Read`: /// /// ``` /// # use std::io; @@ -465,7 +465,6 @@ fn read_to_end<R: Read + ?Sized>(r: &mut R, buf: &mut Vec<u8>) -> Result<usize> /// [`BufRead`]: trait.BufRead.html /// [`BufReader`]: struct.BufReader.html /// [`&[u8]`]: primitive.slice.html -/// #[stable(feature = "rust1", since = "1.0.0")] #[doc(spotlight)] pub trait Read { |
