Index: components/translate/common/translate_util.cc |
diff --git a/components/translate/common/translate_util.cc b/components/translate/common/translate_util.cc |
index 4e151d31e442b0bf9b45794049e5102063e256d4..0ed624de7d9f276eb21baff037d5dcb2d1153596 100644 |
--- a/components/translate/common/translate_util.cc |
+++ b/components/translate/common/translate_util.cc |
@@ -77,7 +77,7 @@ void ToTranslateLanguageSynonym(std::string* language) { |
if (main_part.empty()) |
return; |
- // Apply liner search here because number of items in the list is just four. |
+ // Apply linear search here because number of items in the list is just four. |
for (size_t i = 0; i < arraysize(kLanguageCodeSynonyms); ++i) { |
if (main_part == kLanguageCodeSynonyms[i].chrome_language) { |
main_part = std::string(kLanguageCodeSynonyms[i].translate_language); |