diff options
author | 2014-12-02 12:53:56 +0900 | |
---|---|---|
committer | 2014-12-02 12:53:56 +0900 | |
commit | 11a3965f8c376db4d8fbdf3c6ea6ac54550ae6ed (patch) | |
tree | 355ec3d64c5e1cfb17f4ec22194322b6ff61aac6 /java/src/com/android/inputmethod/latin/utils/CombinedFormatUtils.java | |
parent | f5c754eb8af170a52e62875b38fd7fcfd544d61a (diff) | |
download | latinime-11a3965f8c376db4d8fbdf3c6ea6ac54550ae6ed.tar.gz latinime-11a3965f8c376db4d8fbdf3c6ea6ac54550ae6ed.tar.xz latinime-11a3965f8c376db4d8fbdf3c6ea6ac54550ae6ed.zip |
Fix a misspelled method name
Change-Id: I1151dc1d5db3986a97daf68c1e387dbc2e4610dc
Diffstat (limited to 'java/src/com/android/inputmethod/latin/utils/CombinedFormatUtils.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/utils/CombinedFormatUtils.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/utils/CombinedFormatUtils.java b/java/src/com/android/inputmethod/latin/utils/CombinedFormatUtils.java index 8699f2ce7..476c13406 100644 --- a/java/src/com/android/inputmethod/latin/utils/CombinedFormatUtils.java +++ b/java/src/com/android/inputmethod/latin/utils/CombinedFormatUtils.java @@ -88,7 +88,7 @@ public class CombinedFormatUtils { for (int i = 0; i < ngramProperty.mNgramContext.getPrevWordCount(); i++) { builder.append(" " + NGRAM_PREV_WORD_TAG + "[" + i + "]=" + ngramProperty.mNgramContext.getNthPrevWord(i + 1)); - if (ngramProperty.mNgramContext.isNthPrevWordBeginningOfSontence(i + 1)) { + if (ngramProperty.mNgramContext.isNthPrevWordBeginningOfSentence(i + 1)) { builder.append("," + BEGINNING_OF_SENTENCE_TAG + "=true"); } builder.append("\n"); |