mirror of
https://github.com/RGBCube/serenity
synced 2025-05-26 02:05:08 +00:00
LibUnicode: Fix typo in listPatterns.json parsing method
This commit is contained in:
parent
2ebafe000a
commit
32a2a02489
1 changed files with 2 additions and 2 deletions
|
@ -305,7 +305,7 @@ static void parse_locale_scripts(String locale_path, UnicodeLocaleData& locale_d
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
static void parse_locale_list_patters(String misc_path, UnicodeLocaleData& locale_data, Locale& locale)
|
static void parse_locale_list_patterns(String misc_path, UnicodeLocaleData& locale_data, Locale& locale)
|
||||||
{
|
{
|
||||||
LexicalPath list_patterns_path(move(misc_path));
|
LexicalPath list_patterns_path(move(misc_path));
|
||||||
list_patterns_path = list_patterns_path.append("listPatterns.json"sv);
|
list_patterns_path = list_patterns_path.append("listPatterns.json"sv);
|
||||||
|
@ -449,7 +449,7 @@ static void parse_all_locales(String core_path, String locale_names_path, String
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
auto& locale = locale_data.locales.ensure(*language);
|
auto& locale = locale_data.locales.ensure(*language);
|
||||||
parse_locale_list_patters(misc_path, locale_data, locale);
|
parse_locale_list_patterns(misc_path, locale_data, locale);
|
||||||
}
|
}
|
||||||
|
|
||||||
while (numbers_iterator.has_next()) {
|
while (numbers_iterator.has_next()) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue