about summary refs log tree commit diff
path: root/compiler/rustc_query_system/src
diff options
context:
space:
mode:
authorLi Yuanheng <520dhh@gmail.com>2022-08-23 07:23:36 +0800
committerLi Yuanheng <520dhh@gmail.com>2022-08-31 19:33:51 +0800
commitd7e07c0b6b08e898a0720bf9c2fd2a22404bdfec (patch)
treeb65af2289921af350b8624bac22d40ac4ece9bbe /compiler/rustc_query_system/src
parentb8075e4550a3ec9110930b41e09e77266482e54f (diff)
downloadrust-d7e07c0b6b08e898a0720bf9c2fd2a22404bdfec.tar.gz
rust-d7e07c0b6b08e898a0720bf9c2fd2a22404bdfec.zip
link related issue to FIXME
Co-authored-by: David Wood <agile.lion3441@fuligin.ink>
Diffstat (limited to 'compiler/rustc_query_system/src')
-rw-r--r--compiler/rustc_query_system/src/error.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_query_system/src/error.rs b/compiler/rustc_query_system/src/error.rs
index 2ae6d10b828..515a022e9d9 100644
--- a/compiler/rustc_query_system/src/error.rs
+++ b/compiler/rustc_query_system/src/error.rs
@@ -21,7 +21,7 @@ impl SessionDiagnostic<'_> for Cycle {
         diag.code(rustc_errors::DiagnosticId::Error("E0391".to_string()));
         let upper_stack_len = self.upper_stack_info.len();
         for (span, desc) in self.upper_stack_info.into_iter() {
-            // FIXME: use fluent translation
+            // FIXME(#100717): use fluent translation
             diag.span_note(span, &format!("...which requires {}...", desc));
         }
         diag.set_arg("stack_bottom", self.stack_bottom);