Fix small typo

The closing backtick was outside the closing bracket,
which is why the intra-doc link wasn't working.
This commit is contained in:
Noah Lev 2021-08-06 16:43:55 -07:00 committed by GitHub
parent 6fe0886723
commit 35122393fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);