aboutsummaryrefslogtreecommitdiff
path: root/crates/completion/src/render.rs
diff options
context:
space:
mode:
authorKirill Bulatov <[email protected]>2020-11-28 14:30:39 +0000
committerKirill Bulatov <[email protected]>2020-11-28 14:30:39 +0000
commit3f612d37c68a6e4c09e407b7cd2ad8a1d17ab4e6 (patch)
treee51b5ce814d08c79bd667719992c8b7254e4eb68 /crates/completion/src/render.rs
parent7b145bd99c855b2f4a15835a2298dde504b04d8f (diff)
Move the helpers into ide_db
Diffstat (limited to 'crates/completion/src/render.rs')
-rw-r--r--crates/completion/src/render.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/completion/src/render.rs b/crates/completion/src/render.rs
index e84aef0e4..504757a6a 100644
--- a/crates/completion/src/render.rs
+++ b/crates/completion/src/render.rs
@@ -10,8 +10,8 @@ pub(crate) mod type_alias;
10mod builder_ext; 10mod builder_ext;
11 11
12use hir::{Documentation, HasAttrs, HirDisplay, ModPath, Mutability, ScopeDef, Type}; 12use hir::{Documentation, HasAttrs, HirDisplay, ModPath, Mutability, ScopeDef, Type};
13use ide_db::helpers::insert_use::{ImportScope, MergeBehaviour};
13use ide_db::RootDatabase; 14use ide_db::RootDatabase;
14use ide_helpers::insert_use::{ImportScope, MergeBehaviour};
15use syntax::TextRange; 15use syntax::TextRange;
16use test_utils::mark; 16use test_utils::mark;
17 17