diff options
| author | bors <bors@rust-lang.org> | 2024-06-24 07:57:45 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-06-24 07:57:45 +0000 |
| commit | a32ce24b0c479072dfd125866acca51dd1ba6af3 (patch) | |
| tree | db27cf35b1efe64cd8750ec4b74d46786719e2e2 | |
| parent | 91f0eecc44bf1d39465accb587fcc49c9c806e80 (diff) | |
| parent | a904bc37616353c11f8b0d54606ab153d960c7ef (diff) | |
| download | rust-a32ce24b0c479072dfd125866acca51dd1ba6af3.tar.gz rust-a32ce24b0c479072dfd125866acca51dd1ba6af3.zip | |
Auto merge of #17466 - chenyukang:patch-1, r=Veykril
chore: Fix diagnostic name in macro_error.rs
| -rw-r--r-- | src/tools/rust-analyzer/crates/ide-diagnostics/src/handlers/macro_error.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/rust-analyzer/crates/ide-diagnostics/src/handlers/macro_error.rs b/src/tools/rust-analyzer/crates/ide-diagnostics/src/handlers/macro_error.rs index f8780fc0da7..2cd6a71c001 100644 --- a/src/tools/rust-analyzer/crates/ide-diagnostics/src/handlers/macro_error.rs +++ b/src/tools/rust-analyzer/crates/ide-diagnostics/src/handlers/macro_error.rs @@ -13,7 +13,7 @@ pub(crate) fn macro_error(ctx: &DiagnosticsContext<'_>, d: &hir::MacroError) -> ) } -// Diagnostic: macro-error +// Diagnostic: macro-def-error // // This diagnostic is shown for macro expansion errors. pub(crate) fn macro_def_error(ctx: &DiagnosticsContext<'_>, d: &hir::MacroDefError) -> Diagnostic { |
