mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 18:15:07 +00: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
Add a link
Reference in a new issue