Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide-completion/src/completions/attribute/feature.rs')
-rw-r--r--crates/ide-completion/src/completions/attribute/feature.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ide-completion/src/completions/attribute/feature.rs b/crates/ide-completion/src/completions/attribute/feature.rs
index 1e6baca864..1bcf05faa8 100644
--- a/crates/ide-completion/src/completions/attribute/feature.rs
+++ b/crates/ide-completion/src/completions/attribute/feature.rs
@@ -10,7 +10,7 @@ use crate::{Completions, context::CompletionContext, item::CompletionItem};
pub(super) fn complete_feature(
acc: &mut Completions,
- ctx: &CompletionContext<'_>,
+ ctx: &CompletionContext<'_, '_>,
existing_features: &[ast::Path],
) {
for &Lint { label, description, .. } in FEATURES {