aboutsummaryrefslogtreecommitdiff
path: root/crates/ide_diagnostics/src/handlers/remove_this_semicolon.rs
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2021-06-14 20:37:28 +0100
committerGitHub <[email protected]>2021-06-14 20:37:28 +0100
commitce8fdf3ab05b59b517dee985e4b3828c6e373a91 (patch)
tree8a498dc4c333f2f0e513a5b63a45c226d6e12279 /crates/ide_diagnostics/src/handlers/remove_this_semicolon.rs
parent27a70492f7eb8181c90ed5aa62e8e8b7ce035c91 (diff)
parent4cfc767d7fadeab025227d67f104065c9e8a55d3 (diff)
Merge #9276
9276: internal: refactor diagnostics more r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/ide_diagnostics/src/handlers/remove_this_semicolon.rs')
-rw-r--r--crates/ide_diagnostics/src/handlers/remove_this_semicolon.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ide_diagnostics/src/handlers/remove_this_semicolon.rs b/crates/ide_diagnostics/src/handlers/remove_this_semicolon.rs
index b52e4dc84..4e639f214 100644
--- a/crates/ide_diagnostics/src/handlers/remove_this_semicolon.rs
+++ b/crates/ide_diagnostics/src/handlers/remove_this_semicolon.rs
@@ -49,7 +49,7 @@ mod tests {
49 check_diagnostics( 49 check_diagnostics(
50 r#" 50 r#"
51fn test() -> i32 { 123; } 51fn test() -> i32 { 123; }
52 //^^^ remove this semicolon 52 //^^^ 💡 error: remove this semicolon
53"#, 53"#,
54 ); 54 );
55 } 55 }