summaryrefslogtreecommitdiffstats
path: root/core/java/android/text
diff options
context:
space:
mode:
authorNewton Allen <newt@google.com>2013-11-26 10:25:38 -0800
committerNewton Allen <newt@google.com>2014-09-30 02:52:26 +0000
commit8f8a11b7fa26e603519131001ab46596aa30ba1a (patch)
tree80dc649fbf0df8bc90edd5d7a24abbca67075da4 /core/java/android/text
parentd1462247e05dab10d20372249e9a3ef7ef93fc2e (diff)
downloadframeworks_base-8f8a11b7fa26e603519131001ab46596aa30ba1a.zip
frameworks_base-8f8a11b7fa26e603519131001ab46596aa30ba1a.tar.gz
frameworks_base-8f8a11b7fa26e603519131001ab46596aa30ba1a.tar.bz2
Fix some documentation typos.
Change-Id: I747a0ade5c7b9c45d4465bf327952338bbc1cfaa (cherry picked from commit 4465d1a03ee5fddc5987c19fc36b0bb79e19572f)
Diffstat (limited to 'core/java/android/text')
-rw-r--r--core/java/android/text/method/KeyListener.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/java/android/text/method/KeyListener.java b/core/java/android/text/method/KeyListener.java
index bb79ecd..ce7054c 100644
--- a/core/java/android/text/method/KeyListener.java
+++ b/core/java/android/text/method/KeyListener.java
@@ -57,7 +57,7 @@ public interface KeyListener {
/**
* If the key listener wants to handle this key, return true,
- * otherwise return false and the caller (i.e. the widget host)
+ * otherwise return false and the caller (i.e.&nbsp;the widget host)
* will handle the key.
*/
public boolean onKeyDown(View view, Editable text,
@@ -65,7 +65,7 @@ public interface KeyListener {
/**
* If the key listener wants to handle this key release, return true,
- * otherwise return false and the caller (i.e. the widget host)
+ * otherwise return false and the caller (i.e.&nbsp;the widget host)
* will handle the key.
*/
public boolean onKeyUp(View view, Editable text,
@@ -73,7 +73,7 @@ public interface KeyListener {
/**
* If the key listener wants to other kinds of key events, return true,
- * otherwise return false and the caller (i.e. the widget host)
+ * otherwise return false and the caller (i.e.&nbsp;the widget host)
* will handle the key.
*/
public boolean onKeyOther(View view, Editable text, KeyEvent event);