mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 10:22:05 -05:00
LibUnicode: Fix copy-paste error in calendar_pattern_style_to_string
The string returned must be lowercase.
This commit is contained in:
parent
d2588d852b
commit
f02ecc1da2
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ StringView calendar_pattern_style_to_string(CalendarPatternStyle style)
|
|||
case CalendarPatternStyle::Long:
|
||||
return "long"sv;
|
||||
case CalendarPatternStyle::Numeric:
|
||||
return "Numeric"sv;
|
||||
return "numeric"sv;
|
||||
case CalendarPatternStyle::TwoDigit:
|
||||
return "2-digit"sv;
|
||||
default:
|
||||
|
|
Loading…
Add table
Reference in a new issue