Rollup merge of #87834 - camelid:span-typo, r=CraftSpider

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:
Yuki Okushi 2021-08-08 01:13:43 +09:00 committed by GitHub
commit 08f56b7bdb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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