diff options
author | Igor Aleksanov <[email protected]> | 2020-10-25 08:26:38 +0000 |
---|---|---|
committer | Igor Aleksanov <[email protected]> | 2020-10-25 08:26:38 +0000 |
commit | f731d910cbfe36bbdfa3a3f1415d5c48c4a79238 (patch) | |
tree | cc221d5bad05e1b6dc8e30f876b29d274b05e827 /crates/completion/src/completions/postfix | |
parent | 19c10672023ead0c1d64486154b6c4145b649568 (diff) |
Move Completions structure definition into completions module
Diffstat (limited to 'crates/completion/src/completions/postfix')
-rw-r--r-- | crates/completion/src/completions/postfix/format_like.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/completion/src/completions/postfix/format_like.rs b/crates/completion/src/completions/postfix/format_like.rs index 8a91665b6..3595e0fce 100644 --- a/crates/completion/src/completions/postfix/format_like.rs +++ b/crates/completion/src/completions/postfix/format_like.rs | |||
@@ -16,7 +16,7 @@ | |||
16 | 16 | ||
17 | use crate::{ | 17 | use crate::{ |
18 | completions::postfix::postfix_snippet, config::SnippetCap, context::CompletionContext, | 18 | completions::postfix::postfix_snippet, config::SnippetCap, context::CompletionContext, |
19 | item::Completions, | 19 | Completions, |
20 | }; | 20 | }; |
21 | use syntax::ast::{self, AstToken}; | 21 | use syntax::ast::{self, AstToken}; |
22 | 22 | ||