diff options
author | Lukas Wirth <[email protected]> | 2020-10-12 22:34:32 +0100 |
---|---|---|
committer | Lukas Wirth <[email protected]> | 2020-10-13 09:44:16 +0100 |
commit | 2620b8d42f2d9c41ead1af518158691840141583 (patch) | |
tree | cf00a7ec7e9ee4db3b94a4efecaa4f97181a9a79 /crates/assists/src/handlers | |
parent | 3d13939260f565fe6fb176b15e23201aafc2d11e (diff) |
Fix MergeBehaviour::Full not working when merging nested long paths
Diffstat (limited to 'crates/assists/src/handlers')
-rw-r--r-- | crates/assists/src/handlers/replace_qualified_name_with_use.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/assists/src/handlers/replace_qualified_name_with_use.rs b/crates/assists/src/handlers/replace_qualified_name_with_use.rs index 74afc123b..e95b971a4 100644 --- a/crates/assists/src/handlers/replace_qualified_name_with_use.rs +++ b/crates/assists/src/handlers/replace_qualified_name_with_use.rs | |||
@@ -393,7 +393,7 @@ impl std::fmt::Display<|> for Foo { | |||
393 | } | 393 | } |
394 | ", | 394 | ", |
395 | r" | 395 | r" |
396 | use std::fmt::{Display, nested::Debug}; | 396 | use std::fmt::{nested::Debug, Display}; |
397 | 397 | ||
398 | impl Display for Foo { | 398 | impl Display for Foo { |
399 | } | 399 | } |