mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 19:04:58 +00:00
LibUnicode: Fix copy-paste error in calendar_pattern_style_to_string
The string returned must be lowercase.
This commit is contained in:
committed by
Linus Groh
parent
d2588d852b
commit
f02ecc1da2
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user