about summary refs log tree commit diff
path: root/compiler/rustc_errors
diff options
context:
space:
mode:
authorYuki Okushi <huyuumi.dev@gmail.com>2020-12-19 15:16:03 +0900
committerGitHub <noreply@github.com>2020-12-19 15:16:03 +0900
commitc111404cb56320100b2700c577363f48fc6ff2b1 (patch)
tree6c48c4a48b78417ea001025743693938b4f9cd38 /compiler/rustc_errors
parent60aad47c1369e72e0ac4f297b710d2a19d2d202b (diff)
parent35f16c60e7d3fd1b42c90a0fc084689c817345cb (diff)
downloadrust-c111404cb56320100b2700c577363f48fc6ff2b1.tar.gz
rust-c111404cb56320100b2700c577363f48fc6ff2b1.zip
Rollup merge of #79612 - jyn514:compiler-links, r=Aaron1011
Switch some links in compiler/ to intra-doc links
Diffstat (limited to 'compiler/rustc_errors')
-rw-r--r--compiler/rustc_errors/src/diagnostic.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler/rustc_errors/src/diagnostic.rs b/compiler/rustc_errors/src/diagnostic.rs
index 538e1a59ab8..e61476bf23e 100644
--- a/compiler/rustc_errors/src/diagnostic.rs
+++ b/compiler/rustc_errors/src/diagnostic.rs
@@ -138,8 +138,6 @@ impl Diagnostic {
     ///
     /// This span is *not* considered a ["primary span"][`MultiSpan`]; only
     /// the `Span` supplied when creating the diagnostic is primary.
-    ///
-    /// [`MultiSpan`]: ../rustc_span/struct.MultiSpan.html
     pub fn span_label<T: Into<String>>(&mut self, span: Span, label: T) -> &mut Self {
         self.span.push_span_label(span, label.into());
         self