aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_ide_db/src
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-03-06 17:41:53 +0000
committerGitHub <[email protected]>2020-03-06 17:41:53 +0000
commita42f29166b2b771927fef6061dd427f82eb28d68 (patch)
treec6433fc26f3557a358696f7b66734ce4688fa988 /crates/ra_ide_db/src
parent8e8c5a73ff3b26a7c919fee6caa3212dca9c6ba5 (diff)
parent80909f7698edd972e7bb7e3b255c9a12d78cd9a6 (diff)
Merge #3500
3500: Don't creat public APIs with typos r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/ra_ide_db/src')
-rw-r--r--crates/ra_ide_db/src/feature_flags.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/crates/ra_ide_db/src/feature_flags.rs b/crates/ra_ide_db/src/feature_flags.rs
index d9c9d6cd2..968415072 100644
--- a/crates/ra_ide_db/src/feature_flags.rs
+++ b/crates/ra_ide_db/src/feature_flags.rs
@@ -54,8 +54,9 @@ impl Default for FeatureFlags {
54 FeatureFlags::new(&[ 54 FeatureFlags::new(&[
55 ("lsp.diagnostics", true), 55 ("lsp.diagnostics", true),
56 ("completion.insertion.add-call-parenthesis", true), 56 ("completion.insertion.add-call-parenthesis", true),
57 ("completion.insertion.add-argument-sippets", true), 57 ("completion.insertion.add-argument-snippets", true),
58 ("completion.enable-postfix", true), 58 ("completion.enable-postfix", true),
59 ("call-info.full", true),
59 ("notifications.workspace-loaded", true), 60 ("notifications.workspace-loaded", true),
60 ("notifications.cargo-toml-not-found", true), 61 ("notifications.cargo-toml-not-found", true),
61 ]) 62 ])