mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 11:57:43 +03:00
fix: use to_{uppercase,lowercase}
instead of to_ascii*
variants
This commit is contained in:
parent
fd83cf7870
commit
bf788f5f00
1 changed files with 3 additions and 3 deletions
|
@ -50,10 +50,10 @@ pub fn smart_case_conversion(
|
|||
}
|
||||
|
||||
if should_capitalize_current {
|
||||
buf.push(current.to_ascii_uppercase());
|
||||
buf.extend(current.to_uppercase());
|
||||
should_capitalize_current = false;
|
||||
} else {
|
||||
buf.push(current.to_ascii_lowercase());
|
||||
buf.extend(current.to_lowercase());
|
||||
}
|
||||
|
||||
prev = Some(current);
|
||||
|
@ -83,7 +83,7 @@ pub fn separator_case_conversion(
|
|||
buf.push(separator);
|
||||
}
|
||||
|
||||
buf.push(current.to_ascii_lowercase());
|
||||
buf.extend(current.to_lowercase());
|
||||
|
||||
prev = Some(current);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue