Index: third_party/google_input_tools/third_party/closure_library/closure/goog/promise/resolver.js |
diff --git a/third_party/google_input_tools/third_party/closure_library/closure/goog/promise/resolver.js b/third_party/google_input_tools/third_party/closure_library/closure/goog/promise/resolver.js |
index e27c3006185de57cbb6a8639c4c8e706a03216e0..54c2d912804b33ed7dbe0de5aacaa5f6f026b2e0 100644 |
--- a/third_party/google_input_tools/third_party/closure_library/closure/goog/promise/resolver.js |
+++ b/third_party/google_input_tools/third_party/closure_library/closure/goog/promise/resolver.js |
@@ -29,20 +29,20 @@ goog.promise.Resolver = function() {}; |
/** |
* The promise that created this resolver. |
- * @const {!goog.Promise.<TYPE>} |
+ * @type {!goog.Promise<TYPE>} |
*/ |
goog.promise.Resolver.prototype.promise; |
/** |
* Resolves this resolver with the specified value. |
- * @const {function((TYPE|goog.Promise.<TYPE>|Thenable)=)} |
+ * @type {function((TYPE|goog.Promise<TYPE>|Thenable)=)} |
*/ |
goog.promise.Resolver.prototype.resolve; |
/** |
* Rejects this resolver with the specified reason. |
- * @const {function(*): void} |
+ * @type {function(*=): void} |
*/ |
goog.promise.Resolver.prototype.reject; |