Index: chrome/browser/resources/print_preview/data/ticket_items/vendor_items.js |
diff --git a/chrome/browser/resources/print_preview/data/ticket_items/vendor_items.js b/chrome/browser/resources/print_preview/data/ticket_items/vendor_items.js |
index b347ff8a2b38709464d2b4e338c10f3a517d706c..e3cf19f8ace872a56040ae247545f63681dfd38a 100644 |
--- a/chrome/browser/resources/print_preview/data/ticket_items/vendor_items.js |
+++ b/chrome/browser/resources/print_preview/data/ticket_items/vendor_items.js |
@@ -37,7 +37,7 @@ cr.define('print_preview.ticket_items', function() { |
/** |
* Vendor ticket items store, maps item id to the item value. |
- * @private {!Object.<string, string>} |
+ * @private {!Object<string, string>} |
*/ |
this.items_ = {}; |
}; |
@@ -78,14 +78,14 @@ cr.define('print_preview.ticket_items', function() { |
/** |
* Vendor ticket items store, maps item id to the item value. |
- * @return {!Object.<string, string>} |
+ * @return {!Object<string, string>} |
*/ |
get ticketItems() { |
return this.items_; |
}, |
/** |
- * @param {!Object.<string, string>} values Values to set as the values of |
+ * @param {!Object<string, string>} values Values to set as the values of |
* vendor ticket items. Maps vendor item id to the value. |
*/ |
updateValue: function(values) { |