diff options
author | 2020-07-31 18:39:35 +0000 | |
---|---|---|
committer | 2020-07-31 18:39:35 +0000 | |
commit | 21d7b604c36305795783e9d480915e1f835ce1e3 (patch) | |
tree | ec284692a5e1b50c13c48b716a741db3476f6489 /java/src/com/android/inputmethod/latin/Suggest.java | |
parent | ac8249acbbeb2636bc435985dce3109fc6bab734 (diff) | |
parent | a6c7396edfb4d764315b7339382e9adbbd1c41b9 (diff) | |
download | latinime-21d7b604c36305795783e9d480915e1f835ce1e3.tar.gz latinime-21d7b604c36305795783e9d480915e1f835ce1e3.tar.xz latinime-21d7b604c36305795783e9d480915e1f835ce1e3.zip |
Merge "Update language to comply with Android's inclusive language guidance" am: 9490b1b92f am: 892eabe4c5 am: a2581fb80c am: 994774ebaf am: a6c7396edf
Original change: https://android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/1382602
Change-Id: Ic4c551578824440d04880125d568a760cf01831f
Diffstat (limited to 'java/src/com/android/inputmethod/latin/Suggest.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/Suggest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/Suggest.java b/java/src/com/android/inputmethod/latin/Suggest.java index 7ccefd2dd..da23617af 100644 --- a/java/src/com/android/inputmethod/latin/Suggest.java +++ b/java/src/com/android/inputmethod/latin/Suggest.java @@ -225,7 +225,7 @@ public final class Suggest { // TODO: now that we have personalization, we may want to re-evaluate this decision || !mDictionaryFacilitator.hasAtLeastOneInitializedMainDictionary() // If the first suggestion is a shortcut we never auto-correct to it, regardless - // of how strong it is (whitelist entries are not KIND_SHORTCUT but KIND_WHITELIST). + // of how strong it is (allowlist entries are not KIND_SHORTCUT but KIND_WHITELIST). // TODO: we may want to have shortcut-only entries auto-correct in the future. || suggestionResults.first().isKindOf(SuggestedWordInfo.KIND_SHORTCUT)) { hasAutoCorrection = false; |