diff options
| author | Ivan Tham <pickfire@riseup.net> | 2020-08-27 23:30:15 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-27 23:30:15 +0800 |
| commit | 3a814f3f579d94938ebdbbd7d4508236d7b64233 (patch) | |
| tree | ae7ee04ddd6b16fd70b72ddf66b755a1b949d5a9 | |
| parent | 9ea45935728651e985d70649a476ad89d0bee15e (diff) | |
| download | rust-3a814f3f579d94938ebdbbd7d4508236d7b64233.tar.gz rust-3a814f3f579d94938ebdbbd7d4508236d7b64233.zip | |
Reduce duplicate doc link in error
Co-authored-by: Joshua Nelson <joshua@yottadb.com>
| -rw-r--r-- | library/std/src/error.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/error.rs b/library/std/src/error.rs index 2c1aada8a4f..d3b0f8ceb68 100644 --- a/library/std/src/error.rs +++ b/library/std/src/error.rs @@ -38,7 +38,7 @@ use crate::string; /// by an error from a lower-level module, it can allow accessing that error /// via [`Error::source()`]. This makes it possible for the high-level /// module to provide its own errors while also revealing some of the -/// implementation for debugging via [`Error::source`] chains. +/// implementation for debugging via `source` chains. /// /// [`Result<T, E>`]: Result #[stable(feature = "rust1", since = "1.0.0")] |
