mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 11:57:43 +03:00
Resolve a bunch of upcoming clippy lints
This commit is contained in:
parent
921d351013
commit
c2c1280f02
22 changed files with 113 additions and 124 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue