fix: use to_{uppercase,lowercase} instead of to_ascii*variants

This commit is contained in:
Nik Revenco 2025-03-25 16:04:35 +00:00
parent fd83cf7870
commit bf788f5f00

View file

@ -50,10 +50,10 @@ pub fn smart_case_conversion(
} }
if should_capitalize_current { if should_capitalize_current {
buf.push(current.to_ascii_uppercase()); buf.extend(current.to_uppercase());
should_capitalize_current = false; should_capitalize_current = false;
} else { } else {
buf.push(current.to_ascii_lowercase()); buf.extend(current.to_lowercase());
} }
prev = Some(current); prev = Some(current);
@ -83,7 +83,7 @@ pub fn separator_case_conversion(
buf.push(separator); buf.push(separator);
} }
buf.push(current.to_ascii_lowercase()); buf.extend(current.to_lowercase());
prev = Some(current); prev = Some(current);
} }