style: Silence clippy

This commit is contained in:
Ed Page 2022-05-16 09:09:17 -05:00
parent a17f6a284a
commit 5ae7bda8eb
2 changed files with 2 additions and 1 deletions

View file

@ -47,7 +47,7 @@ impl Entry {
}
}
fn imply(variants: &mut Vec<Variant>, required: Category, missing: Category) {
fn imply(variants: &mut [Variant], required: Category, missing: Category) {
let missing_exists = variants
.iter()
.any(|v| v.types.iter().any(|t| t.category == missing));

View file

@ -171,6 +171,7 @@ impl typos::Dictionary for BuiltIn {
}
}
#[allow(clippy::ptr_arg)]
fn case_correct(correction: &mut Cow<'_, str>, case: Case) {
match case {
Case::Lower | Case::None => (),