diff options
author | Kirill Bulatov <[email protected]> | 2020-11-27 16:13:02 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2020-11-27 16:13:02 +0000 |
commit | 04cd4b17bb04031ecf7c7e9b734d22ea74d8f114 (patch) | |
tree | 235ecf5049b1af3ed8fdf35cad5b66ceb8f28ff4 /crates/assists | |
parent | b2e6ca46ca2ad3352ef13154b401e798e9a7d752 (diff) |
Fix the profiling string
Co-authored-by: Laurențiu Nicola <[email protected]>
Diffstat (limited to 'crates/assists')
-rw-r--r-- | crates/assists/src/utils/insert_use.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/assists/src/utils/insert_use.rs b/crates/assists/src/utils/insert_use.rs index 975a08a20..304adb93d 100644 --- a/crates/assists/src/utils/insert_use.rs +++ b/crates/assists/src/utils/insert_use.rs | |||
@@ -95,7 +95,7 @@ pub fn insert_use<'a>( | |||
95 | path: ast::Path, | 95 | path: ast::Path, |
96 | merge: Option<MergeBehaviour>, | 96 | merge: Option<MergeBehaviour>, |
97 | ) -> SyntaxRewriter<'a> { | 97 | ) -> SyntaxRewriter<'a> { |
98 | let _p = profile::span("mod_path_to_ast"); | 98 | let _p = profile::span("insert_use"); |
99 | let mut rewriter = SyntaxRewriter::default(); | 99 | let mut rewriter = SyntaxRewriter::default(); |
100 | let use_item = make::use_(make::use_tree(path.clone(), None, None, false)); | 100 | let use_item = make::use_(make::use_tree(path.clone(), None, None, false)); |
101 | // merge into existing imports if possible | 101 | // merge into existing imports if possible |