summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/resources/cryptotoken/textfetcher.js
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/chrome/browser/resources/cryptotoken/textfetcher.js')
-rw-r--r--chromium/chrome/browser/resources/cryptotoken/textfetcher.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/chrome/browser/resources/cryptotoken/textfetcher.js b/chromium/chrome/browser/resources/cryptotoken/textfetcher.js
index 4135b0e12cb..d6e18844acb 100644
--- a/chromium/chrome/browser/resources/cryptotoken/textfetcher.js
+++ b/chromium/chrome/browser/resources/cryptotoken/textfetcher.js
@@ -19,7 +19,7 @@ function TextFetcher() {}
* @param {string} url The URL to fetch.
* @param {string?} opt_method The HTTP method to use (default GET)
* @param {string?} opt_body The request body
- * @return {!Promise.<string>} A promise for the fetched text. In case of an
+ * @return {!Promise<string>} A promise for the fetched text. In case of an
* error, this promise is rejected with an HTTP status code.
*/
TextFetcher.prototype.fetch = function(url, opt_method, opt_body) {};
@@ -35,7 +35,7 @@ function XhrTextFetcher() {
* @param {string} url The URL to fetch.
* @param {string?} opt_method The HTTP method to use (default GET)
* @param {string?} opt_body The request body
- * @return {!Promise.<string>} A promise for the fetched text. In case of an
+ * @return {!Promise<string>} A promise for the fetched text. In case of an
* error, this promise is rejected with an HTTP status code.
*/
XhrTextFetcher.prototype.fetch = function(url, opt_method, opt_body) {