diff options
author | Phil Ellison <[email protected]> | 2020-12-30 16:15:00 +0000 |
---|---|---|
committer | Phil Ellison <[email protected]> | 2021-01-23 07:40:25 +0000 |
commit | 920e57bd153fdafeddb1dc34a11c6ef05ace2f70 (patch) | |
tree | 3e5adcdb6da40e1269499bb527992b1e837b56cf /crates | |
parent | e62e4ed148021a80b3a4672dab10b828fbd712ee (diff) |
cargo fmt
Diffstat (limited to 'crates')
-rw-r--r-- | crates/ide/src/diagnostics/fixes.rs | 6 |
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 | }; |
16 | use syntax::{AstNode, TextRange, algo, ast::{self, ArgListOwner, edit::IndentLevel, make}}; | 16 | use syntax::{ |
17 | algo, | ||
18 | ast::{self, edit::IndentLevel, make, ArgListOwner}, | ||
19 | AstNode, TextRange, | ||
20 | }; | ||
17 | use text_edit::TextEdit; | 21 | use text_edit::TextEdit; |
18 | 22 | ||
19 | use crate::{diagnostics::Fix, references::rename::rename_with_semantics, FilePosition}; | 23 | use crate::{diagnostics::Fix, references::rename::rename_with_semantics, FilePosition}; |