diff options
| author | 2017-09-15 14:10:09 +0000 | |
|---|---|---|
| committer | 2017-09-15 14:10:09 +0000 | |
| commit | 1e88a603c942e322d6dc9c3321accc34b5027e5c (patch) | |
| tree | 89705e6aa5cce455760083c0dc04528964c0b202 | |
| parent | e77a09c7aecca9c5a8c016cfeea85c5516a2131a (diff) | |
| parent | c6e9e15b4f787b742ba695f7d42953b643778edb (diff) | |
Merge "Fix conflicting JavaDoc of TYPE_TEXT_FLAG_NO_SUGGESTIONS" into oc-mr1-dev am: 7bbe06231f
am: c6e9e15b4f
Change-Id: I92dd5fd0d4771d99fd0932cfa2e709ac6e9ec8cb
| -rw-r--r-- | core/java/android/text/InputType.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/text/InputType.java b/core/java/android/text/InputType.java index 8967b709a04f..f38482e6fdd1 100644 --- a/core/java/android/text/InputType.java +++ b/core/java/android/text/InputType.java @@ -182,9 +182,9 @@ public interface InputType { * want the IME to correct typos. * Note the contrast with {@link #TYPE_TEXT_FLAG_AUTO_CORRECT} and * {@link #TYPE_TEXT_FLAG_AUTO_COMPLETE}: - * {@code TYPE_TEXT_FLAG_NO_SUGGESTIONS} means the IME should never + * {@code TYPE_TEXT_FLAG_NO_SUGGESTIONS} means the IME does not need to * show an interface to display suggestions. Most IMEs will also take this to - * mean they should not try to auto-correct what the user is typing. + * mean they do not need to try to auto-correct what the user is typing. */ public static final int TYPE_TEXT_FLAG_NO_SUGGESTIONS = 0x00080000; |