Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4959)

Unified Diff: chrome/browser/resources/chromeos/chromevox/common/editable_text_test.unitjs

Issue 1150173003: Fix some JS style nits. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/chromeos/chromevox/common/editable_text_test.unitjs
diff --git a/chrome/browser/resources/chromeos/chromevox/common/editable_text_test.unitjs b/chrome/browser/resources/chromeos/chromevox/common/editable_text_test.unitjs
index 2df3086d66bf05e9131605f155dadd60af914f20..0d00d79d04ffe52744ee25b4900a84973e7dfa7d 100644
--- a/chrome/browser/resources/chromeos/chromevox/common/editable_text_test.unitjs
+++ b/chrome/browser/resources/chromeos/chromevox/common/editable_text_test.unitjs
@@ -16,14 +16,14 @@ function TestTts() {
/**
* The strings that were spoken since the last call to get().
- * @type {Array.<string>}
+ * @type {Array<string>}
*/
TestTts.prototype.strings;
/**
* Returns the list of strings spoken since the last time this method was
* called, and then clears the list.
- * @return {Array.<string>} The list of strings.
+ * @return {Array<string>} The list of strings.
*/
TestTts.prototype.get = function() {
var result = this.strings;

Powered by Google App Engine
This is Rietveld 408576698