Resolve a bunch of upcoming clippy lints

This commit is contained in:
Blaž Hrastnik 2022-11-04 21:01:17 +09:00
parent 921d351013
commit c2c1280f02
No known key found for this signature in database
GPG key ID: 1238B9C4AD889640
22 changed files with 113 additions and 124 deletions

View file

@ -110,8 +110,8 @@ impl<'a> Increment for NumberIncrementor<'a> {
let (lower_count, upper_count): (usize, usize) =
old_text.chars().skip(2).fold((0, 0), |(lower, upper), c| {
(
lower + c.is_ascii_lowercase().then(|| 1).unwrap_or(0),
upper + c.is_ascii_uppercase().then(|| 1).unwrap_or(0),
lower + usize::from(c.is_ascii_lowercase()),
upper + usize::from(c.is_ascii_uppercase()),
)
});
if upper_count > lower_count {