aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChieu Nguyen <cvnguyen@google.com>2015-03-27 14:48:20 -0700
committerChieu Nguyen <cvnguyen@google.com>2015-03-27 14:48:20 -0700
commitd4ee11f9a444dae9380307b9c6f0780436ae38c2 (patch)
tree315b6271094437ce2b2ee8c6efaffb291ee16ca6
parent16c262abe57a1cc481930391e800c35867f3d0b4 (diff)
downloadlatinime-d4ee11f9a444dae9380307b9c6f0780436ae38c2.tar.gz
latinime-d4ee11f9a444dae9380307b9c6f0780436ae38c2.tar.xz
latinime-d4ee11f9a444dae9380307b9c6f0780436ae38c2.zip
"spellcheking" needs spellchecking.
Change-Id: Iaf4cd5d11b113be4738182fb662e5dc54b2f5366
-rw-r--r--java/src/com/android/inputmethod/latin/spellcheck/AndroidWordLevelSpellCheckerSession.java2
-rw-r--r--tests/src/com/android/inputmethod/latin/makedict/FusionDictionary.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/spellcheck/AndroidWordLevelSpellCheckerSession.java b/java/src/com/android/inputmethod/latin/spellcheck/AndroidWordLevelSpellCheckerSession.java
index da5c71738..5aa7783bb 100644
--- a/java/src/com/android/inputmethod/latin/spellcheck/AndroidWordLevelSpellCheckerSession.java
+++ b/java/src/com/android/inputmethod/latin/spellcheck/AndroidWordLevelSpellCheckerSession.java
@@ -320,7 +320,7 @@ public abstract class AndroidWordLevelSpellCheckerSession extends Session {
if (DBG) {
throw e;
}
- Log.e(TAG, "Exception while spellcheking", e);
+ Log.e(TAG, "Exception while spellchecking", e);
return AndroidSpellCheckerService.getNotInDictEmptySuggestions(
false /* reportAsTypo */);
}
diff --git a/tests/src/com/android/inputmethod/latin/makedict/FusionDictionary.java b/tests/src/com/android/inputmethod/latin/makedict/FusionDictionary.java
index 52060bed2..6ba1ef966 100644
--- a/tests/src/com/android/inputmethod/latin/makedict/FusionDictionary.java
+++ b/tests/src/com/android/inputmethod/latin/makedict/FusionDictionary.java
@@ -327,7 +327,7 @@ public final class FusionDictionary implements Iterable<WordProperty> {
* an exception is thrown.
* @param word the word, as an int array.
* @param probabilityInfo the probability information of the word.
- * @param isNotAWord true if this is not a word for spellcheking purposes (shortcut only or so)
+ * @param isNotAWord true if this is not a word for spellchecking purposes (shortcut only or so)
* @param isPossiblyOffensive true if this word is possibly offensive
*/
private void add(final int[] word, final ProbabilityInfo probabilityInfo,