Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide-db/src/syntax_helpers/suggest_name.rs')
-rw-r--r--crates/ide-db/src/syntax_helpers/suggest_name.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/crates/ide-db/src/syntax_helpers/suggest_name.rs b/crates/ide-db/src/syntax_helpers/suggest_name.rs
index 21dd098781..6801856e5b 100644
--- a/crates/ide-db/src/syntax_helpers/suggest_name.rs
+++ b/crates/ide-db/src/syntax_helpers/suggest_name.rs
@@ -7,8 +7,9 @@ use itertools::Itertools;
use rustc_hash::FxHashMap;
use stdx::to_lower_snake_case;
use syntax::{
+ AstNode, Edition, SmolStr, SmolStrBuilder, ToSmolStr,
ast::{self, HasName},
- match_ast, AstNode, Edition, SmolStr, SmolStrBuilder, ToSmolStr,
+ match_ast,
};
use crate::RootDatabase;