diff options
author | Greg <[email protected]> | 2019-11-12 03:56:39 +0000 |
---|---|---|
committer | Greg <[email protected]> | 2019-11-12 03:56:39 +0000 |
commit | 088e5e172138f9bcaabd022113d92857fa0411e2 (patch) | |
tree | c36c534c8eb48fd272c6517956fd31885284c0bc /crates/ra_ide_api/src | |
parent | eb72156094ce88c85c55e821026686c66bd0736d (diff) |
fix typo
Diffstat (limited to 'crates/ra_ide_api/src')
-rw-r--r-- | crates/ra_ide_api/src/completion/complete_postfix.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_ide_api/src/completion/complete_postfix.rs b/crates/ra_ide_api/src/completion/complete_postfix.rs index a3e9e5f46..99fed8689 100644 --- a/crates/ra_ide_api/src/completion/complete_postfix.rs +++ b/crates/ra_ide_api/src/completion/complete_postfix.rs | |||
@@ -13,7 +13,7 @@ use crate::{ | |||
13 | }; | 13 | }; |
14 | 14 | ||
15 | pub(super) fn complete_postfix(acc: &mut Completions, ctx: &CompletionContext) { | 15 | pub(super) fn complete_postfix(acc: &mut Completions, ctx: &CompletionContext) { |
16 | if ctx.db.feature_flags.get("completions.enable-postfix") == false { | 16 | if ctx.db.feature_flags.get("completion.enable-postfix") == false { |
17 | return; | 17 | return; |
18 | } | 18 | } |
19 | 19 | ||