aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/LatinKeyboardBaseView.java
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2010-07-28 20:43:48 -0700
committerTadashi G. Takaoka <takaoka@google.com>2010-07-28 20:43:48 -0700
commitf00341fdc5170b4ad9e4027b6a51b9f87649f5fa (patch)
tree06b37d14bbaa6deaf03fd47e6e052772bca3b3a0 /java/src/com/android/inputmethod/latin/LatinKeyboardBaseView.java
parent820e4260cd12d947c095f60a8452832b39748e2b (diff)
downloadlatinime-f00341fdc5170b4ad9e4027b6a51b9f87649f5fa.tar.gz
latinime-f00341fdc5170b4ad9e4027b6a51b9f87649f5fa.tar.xz
latinime-f00341fdc5170b4ad9e4027b6a51b9f87649f5fa.zip
Fix grammar error in comment
Change-Id: I728c2fefcf3c22d30d192a9f4b3aedad4eddc2ed
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinKeyboardBaseView.java')
-rw-r--r--java/src/com/android/inputmethod/latin/LatinKeyboardBaseView.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinKeyboardBaseView.java b/java/src/com/android/inputmethod/latin/LatinKeyboardBaseView.java
index 02683dba2..9570da7ba 100644
--- a/java/src/com/android/inputmethod/latin/LatinKeyboardBaseView.java
+++ b/java/src/com/android/inputmethod/latin/LatinKeyboardBaseView.java
@@ -1390,8 +1390,8 @@ public class LatinKeyboardBaseView extends View implements View.OnClickListener
/*
* While time debouncing is in effect, mCurrentKey holds the new key and mDebouncer
* holds the last key. At ACTION_UP event if time debouncing will be in effect
- * eventually, the last key should be send as the result. For that situation
- * mCurrentKey should not be showed as popup preview.
+ * eventually, the last key should be sent as the result. In such case mCurrentKey
+ * should not be showed as popup preview.
*/
showPreview(mDebouncer.isMinorTimeBounce() ? mDebouncer.getLastKey() : mCurrentKey);
break;