Index: chrome/browser/resources/chromeos/chromevox/host/interface/abstract_tts.js |
diff --git a/chrome/browser/resources/chromeos/chromevox/host/interface/abstract_tts.js b/chrome/browser/resources/chromeos/chromevox/host/interface/abstract_tts.js |
index ae4346bbe0b43f9e231bb8682fd07babb981ffc8..835f3fb4719e072abdb7e10fd2e5fe69bea51935 100644 |
--- a/chrome/browser/resources/chromeos/chromevox/host/interface/abstract_tts.js |
+++ b/chrome/browser/resources/chromeos/chromevox/host/interface/abstract_tts.js |
@@ -422,7 +422,7 @@ cvox.AbstractTts.DEBUG = true; |
/** |
* Character dictionary. These symbols are replaced with their human readable |
* equivalents. This replacement only occurs for single character utterances. |
- * @type {Object.<string, string>} |
+ * @type {Object<string, string>} |
*/ |
cvox.AbstractTts.CHARACTER_DICTIONARY = { |
' ': 'space', |
@@ -469,7 +469,7 @@ cvox.AbstractTts.CHARACTER_DICTIONARY = { |
* should be spelled out the way most TTS engines will pronounce it |
* correctly. This particular dictionary only handles letters and numbers, |
* no symbols. |
- * @type {Object.<string, string>} |
+ * @type {Object<string, string>} |
*/ |
cvox.AbstractTts.PRONUNCIATION_DICTIONARY = { |
'admob': 'ad-mob', |
@@ -509,7 +509,7 @@ cvox.AbstractTts.pronunciationDictionaryRegexp_; |
* |
* For example, do not include '$' here because $2 should be read as |
* "two dollars". |
- * @type {Object.<string, string>} |
+ * @type {Object<string, string>} |
*/ |
cvox.AbstractTts.SUBSTITUTION_DICTIONARY = { |
'://': 'colon slash slash', |