diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2017-01-19 11:56:01 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-01-19 11:56:01 +0100 |
| commit | cabfb078b03c61d1465be8cb4acc4823ae58914c (patch) | |
| tree | 3255da8a072e9f2f5f3774e1ac0cd9f4c9867ba6 /src/libstd | |
| parent | ced04ff5c6d4a37ada345ab4d2b4d5a09f12dcb6 (diff) | |
| parent | 58aac456ae96a9aee3d350df8fc0ca780f9c9c92 (diff) | |
| download | rust-cabfb078b03c61d1465be8cb4acc4823ae58914c.tar.gz rust-cabfb078b03c61d1465be8cb4acc4823ae58914c.zip | |
Rollup merge of #38922 - chris-morgan:fs-markdown-link-fix, r=steveklabnik
Fix a couple of bad Markdown links
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/fs.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstd/fs.rs b/src/libstd/fs.rs index 41934dc057e..06402cc0e8e 100644 --- a/src/libstd/fs.rs +++ b/src/libstd/fs.rs @@ -81,7 +81,8 @@ use time::SystemTime; /// # } /// ``` /// -/// [`BufReader`]: ../io/struct.BufReader.html +/// [`Read`]: ../io/trait.Read.html +/// [`BufReader<R>`]: ../io/struct.BufReader.html #[stable(feature = "rust1", since = "1.0.0")] pub struct File { inner: fs_imp::File, |
