about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNoah Lev <camelidcamel@gmail.com>2021-08-06 16:43:55 -0700
committerGitHub <noreply@github.com>2021-08-06 16:43:55 -0700
commit35122393fdf943fbaa8225bbbc177f9f9c38496a (patch)
tree72b40ebc732be5f7602fa3b69b3d86a71dd7dbfa
parent6fe0886723c9e08b800c9951f1c6f6a57b2bf22c (diff)
downloadrust-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.rs2
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);