Index: chrome/browser/resources/chromeos/chromevox/braille/pan_strategy.js |
diff --git a/chrome/browser/resources/chromeos/chromevox/braille/pan_strategy.js b/chrome/browser/resources/chromeos/chromevox/braille/pan_strategy.js |
index e81db34e182c1d21482f561db344082d2374b438..9984b263efff43d017cd7e99aeb440cd876d7940 100644 |
--- a/chrome/browser/resources/chromeos/chromevox/braille/pan_strategy.js |
+++ b/chrome/browser/resources/chromeos/chromevox/braille/pan_strategy.js |
@@ -28,7 +28,7 @@ cvox.PanStrategy = function() { |
/** |
* Points before which it is desirable to break content if it doesn't fit |
* on the display. |
- * @type {!Array.<number>} |
+ * @type {!Array<number>} |
* @private |
*/ |
this.breakPoints_ = []; |
@@ -158,7 +158,7 @@ cvox.PanStrategy.prototype = { |
* Overridden by subclasses to provide breakpoints given translated |
* braille cell content. |
* @param {!ArrayBuffer} content New display content. |
- * @return {!Array.<number>} The points before which it is desirable to break |
+ * @return {!Array<number>} The points before which it is desirable to break |
* content if needed or the empty array if no points are more desirable |
* than any position. |
* @private |