summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorDavid Friedman <dmail@google.com>2015-06-19 23:14:08 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-06-19 23:14:08 +0000
commit8292afedfa7e22a6f278f8cbd5bd7b7912bf43ba (patch)
treeff7b64d730c75540f2dfd22d6df6ad7caaec5882 /docs
parent95499dcbb404d8e4d5575be7d5568115c35a639a (diff)
parentc3fbb0ce6c04ea5ece37bf4529271cb14296135b (diff)
downloadframeworks_base-8292afedfa7e22a6f278f8cbd5bd7b7912bf43ba.zip
frameworks_base-8292afedfa7e22a6f278f8cbd5bd7b7912bf43ba.tar.gz
frameworks_base-8292afedfa7e22a6f278f8cbd5bd7b7912bf43ba.tar.bz2
am c3fbb0ce: am bee8d60a: Fixes a typo where parens were used instead of curly braces, preventing a link from being created at build time.
* commit 'c3fbb0ce6c04ea5ece37bf4529271cb14296135b': Fixes a typo where parens were used instead of curly braces, preventing a link from being created at build time.
Diffstat (limited to 'docs')
-rw-r--r--docs/html/guide/topics/ui/controls/text.jd4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/html/guide/topics/ui/controls/text.jd b/docs/html/guide/topics/ui/controls/text.jd
index 9474dee..c11dc32 100644
--- a/docs/html/guide/topics/ui/controls/text.jd
+++ b/docs/html/guide/topics/ui/controls/text.jd
@@ -172,7 +172,7 @@ android:imeOptions}</a> attribute. For example, here's how you can specify the S
are any subsequent <a
href="{@docRoot}reference/android/view/View.html#attr_android:focusable">{@code
android:focusable}</a> fields. If any focusable fields are found following this one, the system
-applies the (@code actionNext} action to the current {@link android.widget.EditText} so the user can
+applies the {@code "actionNext"} action to the current {@link android.widget.EditText} so the user can
select Next to move to the next field. If there's no subsequent focusable field, the system applies
the {@code "actionDone"} action. You can override this by setting the <a
href="{@docRoot}reference/android/widget/TextView.html#attr_android:imeOptions">{@code
@@ -263,7 +263,7 @@ disabled with {@code android:imeOptions="flagNoExtractUi"}.</p>
<p>If you want to provide suggestions to users as they type, you can use a subclass of {@link
android.widget.EditText} called {@link android.widget.AutoCompleteTextView}. To implement
-auto-complete, you must specify an (@link android.widget.Adapter) that provides the text
+auto-complete, you must specify an {@link android.widget.Adapter} that provides the text
suggestions. There are several kinds of adapters available, depending on where the data is coming
from, such as from a database or an array.</p>