aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_editor/src/completion.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-10-15 18:05:26 +0100
committerAleksey Kladov <[email protected]>2018-10-15 18:05:26 +0100
commit1624bf2d7f8c60620830149ac2f88e94dfdb036e (patch)
treec92ef6d7811360c138830abd182ec3c4ce301cc2 /crates/ra_editor/src/completion.rs
parent94349206483ad78de71e1546d74a355bbdf764c4 (diff)
switch editor to 2018
Diffstat (limited to 'crates/ra_editor/src/completion.rs')
-rw-r--r--crates/ra_editor/src/completion.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_editor/src/completion.rs b/crates/ra_editor/src/completion.rs
index 20b8484b3..b6095dca9 100644
--- a/crates/ra_editor/src/completion.rs
+++ b/crates/ra_editor/src/completion.rs
@@ -9,7 +9,7 @@ use ra_syntax::{
9 text_utils::is_subrange, 9 text_utils::is_subrange,
10}; 10};
11 11
12use { 12use crate::{
13 AtomEdit, find_node_at_offset, 13 AtomEdit, find_node_at_offset,
14 scope::{FnScopes, ModuleScope}, 14 scope::{FnScopes, ModuleScope},
15}; 15};