Unnamed repository; edit this file 'description' to name the repository.
fix: typo
roife 2024-03-15
parent d40c0fe · commit 10aa999
-rw-r--r--crates/ide-assists/src/handlers/extract_module.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/ide-assists/src/handlers/extract_module.rs b/crates/ide-assists/src/handlers/extract_module.rs
index c6a1bd0838..42f935651c 100644
--- a/crates/ide-assists/src/handlers/extract_module.rs
+++ b/crates/ide-assists/src/handlers/extract_module.rs
@@ -467,9 +467,9 @@ impl Module {
.filter(|x| find_node_at_range::<ast::Use>(file.syntax(), x.range).is_none())
.filter_map(|x| find_node_at_range::<ast::Path>(file.syntax(), x.range))
{
- let in_selectin = selection_range.contains_range(x.syntax().text_range());
- uses_exist_in_sel |= in_selectin;
- uses_exist_out_sel |= !in_selectin;
+ let in_selection = selection_range.contains_range(x.syntax().text_range());
+ uses_exist_in_sel |= in_selection;
+ uses_exist_out_sel |= !in_selection;
if uses_exist_in_sel && uses_exist_out_sel {
break 'outside;