fix: switch to lower|upper case is flipped

pull/12043/head
Nikita Revenco 2024-12-20 07:57:16 +00:00
parent c1be961b93
commit 355b2ba290
1 changed files with 2 additions and 2 deletions

View File

@ -1796,11 +1796,11 @@ fn switch_to_camel_case(cx: &mut Context) {
} }
fn switch_to_lower_case(cx: &mut Context) { fn switch_to_lower_case(cx: &mut Context) {
switch_case_impl(cx, |chars| to_upper_case(chars)) switch_case_impl(cx, |chars| to_lower_case(chars))
} }
fn switch_to_upper_case(cx: &mut Context) { fn switch_to_upper_case(cx: &mut Context) {
switch_case_impl(cx, |chars| to_lower_case(chars)) switch_case_impl(cx, |chars| to_upper_case(chars))
} }
fn switch_to_alternate_case(cx: &mut Context) { fn switch_to_alternate_case(cx: &mut Context) {