mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-27 03:39:04 +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
Notes:
sideshowbarker
2024-07-17 23:15:32 +09:00
Author: https://github.com/trflynn89
Commit: f02ecc1da2
Pull-request: https://github.com/SerenityOS/serenity/pull/11149
Reviewed-by: https://github.com/linusg ✅
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