Skip to content

Commit

Permalink
fix a typo in flutter#27311 (flutter#27687)
Browse files Browse the repository at this point in the history
  • Loading branch information
moko256 authored Aug 5, 2021
1 parent 431ac60 commit c0e59bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions shell/platform/windows/system_utils_winuwp.cc
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ std::vector<LanguageInfo> GetPreferredLanguageInfo() {

std::vector<std::wstring> GetPreferredLanguages() {
std::vector<std::wstring> languages;
auto platform_langueages = winrt::Windows::System::UserProfile::
auto platform_languages = winrt::Windows::System::UserProfile::
GlobalizationPreferences::Languages();
for (const auto& platform_language : platform_langueages) {
for (const auto& platform_language : platform_languages) {
languages.push_back(std::wstring{platform_language});
}
return languages;
Expand Down

0 comments on commit c0e59bc

Please sign in to comment.