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:49:00 +0000
commit4465d1a03ee5fddc5987c19fc36b0bb79e19572f (patch)
tree1aa3fd74f4acc01b72ae9ff8117ad25ad29f6d38 /core/java/android/text
parentd40d2dd182799832b17fc8cb8b22be5b9c80e773 (diff)
downloadframeworks_base-4465d1a03ee5fddc5987c19fc36b0bb79e19572f.zip
frameworks_base-4465d1a03ee5fddc5987c19fc36b0bb79e19572f.tar.gz
frameworks_base-4465d1a03ee5fddc5987c19fc36b0bb79e19572f.tar.bz2
Fix some documentation typos.
Change-Id: I747a0ade5c7b9c45d4465bf327952338bbc1cfaa
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);