Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mosuem committed Sep 6, 2024
1 parent 9e57fe0 commit 2168c32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/intl4x/lib/case_mapping.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ extension CaseMappingWithIntl4X on String {
String toLocaleLowerCase(Locale locale) =>
Intl(locale: locale).caseMapping.toLowerCase(this);
String toLocaleUpperCase(Locale locale) =>
Intl(locale: locale).caseMapping.toLowerCase(this);
Intl(locale: locale).caseMapping.toUpperCase(this);
}

0 comments on commit 2168c32

Please sign in to comment.