aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Ellison <[email protected]>2020-12-30 16:15:00 +0000
committerPhil Ellison <[email protected]>2021-01-23 07:40:25 +0000
commit920e57bd153fdafeddb1dc34a11c6ef05ace2f70 (patch)
tree3e5adcdb6da40e1269499bb527992b1e837b56cf
parente62e4ed148021a80b3a4672dab10b828fbd712ee (diff)
cargo fmt
-rw-r--r--crates/ide/src/diagnostics/fixes.rs6
1 files changed, 5 insertions, 1 deletions
diff --git a/crates/ide/src/diagnostics/fixes.rs b/crates/ide/src/diagnostics/fixes.rs
index 5828ea35a..1f112c5b8 100644
--- a/crates/ide/src/diagnostics/fixes.rs
+++ b/crates/ide/src/diagnostics/fixes.rs
@@ -13,7 +13,11 @@ use ide_db::{
13 source_change::{FileSystemEdit, SourceChange}, 13 source_change::{FileSystemEdit, SourceChange},
14 RootDatabase, 14 RootDatabase,
15}; 15};
16use syntax::{AstNode, TextRange, algo, ast::{self, ArgListOwner, edit::IndentLevel, make}}; 16use syntax::{
17 algo,
18 ast::{self, edit::IndentLevel, make, ArgListOwner},
19 AstNode, TextRange,
20};
17use text_edit::TextEdit; 21use text_edit::TextEdit;
18 22
19use crate::{diagnostics::Fix, references::rename::rename_with_semantics, FilePosition}; 23use crate::{diagnostics::Fix, references::rename::rename_with_semantics, FilePosition};