Index: chrome/browser/resources/print_preview/data/invitation_store.js |
diff --git a/chrome/browser/resources/print_preview/data/invitation_store.js b/chrome/browser/resources/print_preview/data/invitation_store.js |
index 80720362764b4710b35d7322e7d434ab9f438618..86ba438ecf1b2731e3c7ab880f2b4790871faa2f 100644 |
--- a/chrome/browser/resources/print_preview/data/invitation_store.js |
+++ b/chrome/browser/resources/print_preview/data/invitation_store.js |
@@ -22,14 +22,14 @@ cr.define('print_preview', function() { |
/** |
* Maps user account to the list of invitations for this account. |
- * @private {!Object.<string, !Array.<!print_preview.Invitation>>} |
+ * @private {!Object<string, !Array<!print_preview.Invitation>>} |
*/ |
this.invitations_ = {}; |
/** |
* Maps user account to the flag whether the invitations for this account |
* were successfully loaded. |
- * @private {!Object.<string, print_preview.InvitationStore.LoadStatus_>} |
+ * @private {!Object<string, print_preview.InvitationStore.LoadStatus_>} |
*/ |
this.loadStatus_ = {}; |
@@ -87,7 +87,7 @@ cr.define('print_preview', function() { |
/** |
* @param {string} account Account to filter invitations by. |
- * @return {!Array.<!print_preview.Invitation>} List of invitations for the |
+ * @return {!Array<!print_preview.Invitation>} List of invitations for the |
* {@code account}. |
*/ |
invitations: function(account) { |