Unnamed repository; edit this file 'description' to name the repository.
-rw-r--r--crates/ide_diagnostics/src/handlers/incorrect_case.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/ide_diagnostics/src/handlers/incorrect_case.rs b/crates/ide_diagnostics/src/handlers/incorrect_case.rs
index e2bbabd53c..6990b19cf3 100644
--- a/crates/ide_diagnostics/src/handlers/incorrect_case.rs
+++ b/crates/ide_diagnostics/src/handlers/incorrect_case.rs
@@ -102,8 +102,8 @@ fn some_fn() {
"#,
r#"
fn some_fn() {
- let what_a_weird_formatting = 10;
- another_func(what_a_weird_formatting);
+ let what_aweird_formatting = 10;
+ another_func(what_aweird_formatting);
}
"#,
);