diff options
author | Jeff Smith <whydoubt@yahoo.com> | 2012-07-19 14:19:24 -0500 |
---|---|---|
committer | Scott Main <smain@google.com> | 2012-07-25 10:49:25 -0700 |
commit | a45746efadd11bb7dfab026fb3c81a25fae74ca4 (patch) | |
tree | 9875e997b80cf5a43b7e6ba8bb3615a17bda6c8f /core/java/android/view/textservice | |
parent | 2f5b61a750e36169e37788a645f422cc8a8f7091 (diff) | |
download | frameworks_base-a45746efadd11bb7dfab026fb3c81a25fae74ca4.zip frameworks_base-a45746efadd11bb7dfab026fb3c81a25fae74ca4.tar.gz frameworks_base-a45746efadd11bb7dfab026fb3c81a25fae74ca4.tar.bz2 |
Fix several cases of broken droiddoc syntax
external issue 35214
patch contributed by Jeff Smith <whydoubt@yahoo.com>
Change-Id: I70dcee88a140699bf3e1ab369bed6dcd2fdd3d83
Diffstat (limited to 'core/java/android/view/textservice')
-rw-r--r-- | core/java/android/view/textservice/TextServicesManager.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/java/android/view/textservice/TextServicesManager.java b/core/java/android/view/textservice/TextServicesManager.java index 161e8fb..81b36db 100644 --- a/core/java/android/view/textservice/TextServicesManager.java +++ b/core/java/android/view/textservice/TextServicesManager.java @@ -91,11 +91,11 @@ public final class TextServicesManager { /** * Get a spell checker session for the specified spell checker - * @param locale the locale for the spell checker. If {@param locale} is null and + * @param locale the locale for the spell checker. If {@code locale} is null and * referToSpellCheckerLanguageSettings is true, the locale specified in Settings will be - * returned. If {@param locale} is not null and referToSpellCheckerLanguageSettings is true, - * the locale specified in Settings will be returned only when it is same as {@param locale}. - * Exceptionally, when referToSpellCheckerLanguageSettings is true and {@param locale} is + * returned. If {@code locale} is not null and referToSpellCheckerLanguageSettings is true, + * the locale specified in Settings will be returned only when it is same as {@code locale}. + * Exceptionally, when referToSpellCheckerLanguageSettings is true and {@code locale} is * only language (e.g. "en"), the specified locale in Settings (e.g. "en_US") will be * selected. * @param listener a spell checker session lister for getting results from a spell checker. |