diff options
| author | Pietro Albini <pietro@pietroalbini.org> | 2018-07-01 21:18:45 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-01 21:18:45 +0200 |
| commit | 1e5062977219314f5dc28b3e2f0b1cb4e135ec55 (patch) | |
| tree | 9539e2465c68384052f0c25eb72b2cd99aaa8daf /src/libstd | |
| parent | 0f8343830b0f40026dae00ceaf01258e0e4923b5 (diff) | |
| parent | 30d825ce72c6e56a3c82f338897a437eaa8cd882 (diff) | |
| download | rust-1e5062977219314f5dc28b3e2f0b1cb4e135ec55.tar.gz rust-1e5062977219314f5dc28b3e2f0b1cb4e135ec55.zip | |
Rollup merge of #51853 - MajorBreakfast:fix-doc-links, r=cramertj
Fix some doc links The futures crate CI always fails because of these intra doc links. I hope that this will fix this issue. r? @steveklabnik @cramertj Edit: I added @steveklabnik as reviewer because this PR also adjusts a link in `src/libstd/error.rs`
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/error.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libstd/error.rs b/src/libstd/error.rs index 3160485375f..1958915602f 100644 --- a/src/libstd/error.rs +++ b/src/libstd/error.rs @@ -49,6 +49,7 @@ use string; /// /// [`Result<T, E>`]: ../result/enum.Result.html /// [`Display`]: ../fmt/trait.Display.html +/// [`Debug`]: ../fmt/trait.Debug.html /// [`cause`]: trait.Error.html#method.cause #[stable(feature = "rust1", since = "1.0.0")] pub trait Error: Debug + Display { |
