summaryrefslogtreecommitdiffstats
path: root/core/java/android
diff options
context:
space:
mode:
authorNiels Egberts <nielse@google.com>2015-04-13 10:13:10 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2015-04-13 10:13:14 +0000
commit1fbdc5c7823544a9311fe76a7576e548376cf12c (patch)
tree172e19d11f5d64d90c03bb04a88ffd679157ab82 /core/java/android
parent834a91dda7724974fbd93bc65b9dd7178edddcdd (diff)
parentf3d78656df5ad681db2d087f8152a5ec27036d8d (diff)
downloadframeworks_base-1fbdc5c7823544a9311fe76a7576e548376cf12c.zip
frameworks_base-1fbdc5c7823544a9311fe76a7576e548376cf12c.tar.gz
frameworks_base-1fbdc5c7823544a9311fe76a7576e548376cf12c.tar.bz2
Merge "Fix parens typos in documentation."
Diffstat (limited to 'core/java/android')
-rw-r--r--core/java/android/speech/tts/TextToSpeech.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/java/android/speech/tts/TextToSpeech.java b/core/java/android/speech/tts/TextToSpeech.java
index 13fb657..cf29310 100644
--- a/core/java/android/speech/tts/TextToSpeech.java
+++ b/core/java/android/speech/tts/TextToSpeech.java
@@ -215,7 +215,7 @@ public class TextToSpeech {
* </li>
* <li>
* A list of feature strings that engines might support, e.g
- * {@link Engine#KEY_FEATURE_NETWORK_SYNTHESIS}). These values may be passed in to
+ * {@link Engine#KEY_FEATURE_NETWORK_SYNTHESIS}. These values may be passed in to
* {@link TextToSpeech#speak} and {@link TextToSpeech#synthesizeToFile} to modify
* engine behaviour. The engine can be queried for the set of features it supports
* through {@link TextToSpeech#getFeatures(java.util.Locale)}.
@@ -576,9 +576,9 @@ public class TextToSpeech {
* @see TextToSpeech#getFeatures(java.util.Locale)
*
* @deprecated Starting from API level 21, to select network synthesis, call
- * ({@link TextToSpeech#getVoices()}, find a suitable network voice
+ * {@link TextToSpeech#getVoices()}, find a suitable network voice
* ({@link Voice#isNetworkConnectionRequired()}) and pass it
- * to {@link TextToSpeech#setVoice(Voice)}).
+ * to {@link TextToSpeech#setVoice(Voice)}.
*/
@Deprecated
public static final String KEY_FEATURE_NETWORK_SYNTHESIS = "networkTts";