From 35122393fdf943fbaa8225bbbc177f9f9c38496a Mon Sep 17 00:00:00 2001 From: Noah Lev Date: Fri, 6 Aug 2021 16:43:55 -0700 Subject: [PATCH] Fix small typo The closing backtick was outside the closing bracket, which is why the intra-doc link wasn't working. --- src/librustdoc/clean/types.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 @@ impl Visibility { 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);