diff options
| author | Noah Lev <camelidcamel@gmail.com> | 2021-08-06 16:43:55 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-06 16:43:55 -0700 |
| commit | 35122393fdf943fbaa8225bbbc177f9f9c38496a (patch) | |
| tree | 72b40ebc732be5f7602fa3b69b3d86a71dd7dbfa | |
| parent | 6fe0886723c9e08b800c9951f1c6f6a57b2bf22c (diff) | |
| download | rust-35122393fdf943fbaa8225bbbc177f9f9c38496a.tar.gz rust-35122393fdf943fbaa8225bbbc177f9f9c38496a.zip | |
Fix small typo
The closing backtick was outside the closing bracket, which is why the intra-doc link wasn't working.
| -rw-r--r-- | src/librustdoc/clean/types.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustdoc/clean/types.rs b/src/librustdoc/clean/types.rs index 5c73d3de5b9..9a36c671bc4 100644 --- a/src/librustdoc/clean/types.rs +++ b/src/librustdoc/clean/types.rs @@ -1937,7 +1937,7 @@ crate enum Variant { Struct(VariantStruct), } -/// Small wrapper around [`rustc_span::Span]` that adds helper methods +/// Small wrapper around [`rustc_span::Span`] that adds helper methods /// and enforces calling [`rustc_span::Span::source_callsite()`]. #[derive(Copy, Clone, Debug)] crate struct Span(rustc_span::Span); |
