Index: third_party/google_input_tools/third_party/closure_library/closure/goog/dom/classlist.js |
diff --git a/third_party/google_input_tools/third_party/closure_library/closure/goog/dom/classlist.js b/third_party/google_input_tools/third_party/closure_library/closure/goog/dom/classlist.js |
index bca8e6bf2ec96afdbf1774176a95b3745fba84e7..dcbb7ed276ce431230c5a18c4efa954650a26d20 100644 |
--- a/third_party/google_input_tools/third_party/closure_library/closure/goog/dom/classlist.js |
+++ b/third_party/google_input_tools/third_party/closure_library/closure/goog/dom/classlist.js |
@@ -103,7 +103,7 @@ goog.dom.classlist.add = function(element, className) { |
/** |
* Convenience method to add a number of class names at once. |
* @param {Element} element The element to which to add classes. |
- * @param {goog.array.ArrayLike.<string>} classesToAdd An array-like object |
+ * @param {goog.array.ArrayLike<string>} classesToAdd An array-like object |
* containing a collection of class names to add to the element. |
* This method may throw a DOM exception if classesToAdd contains invalid |
* or empty class names. |
@@ -167,7 +167,7 @@ goog.dom.classlist.remove = function(element, className) { |
* repeatedly calling {@code goog.dom.classlist.remove} if you want to remove |
* a large set of class names at once. |
* @param {Element} element The element from which to remove classes. |
- * @param {goog.array.ArrayLike.<string>} classesToRemove An array-like object |
+ * @param {goog.array.ArrayLike<string>} classesToRemove An array-like object |
* containing a collection of class names to remove from the element. |
* This method may throw a DOM exception if classesToRemove contains invalid |
* or empty class names. |
@@ -213,7 +213,7 @@ goog.dom.classlist.enable = function(element, className, enabled) { |
* method may throw a DOM exception for an invalid or empty class name if |
* DOMTokenList is used. |
* @param {!Element} element DOM node to add or remove the class on. |
- * @param {goog.array.ArrayLike.<string>} classesToEnable An array-like object |
+ * @param {goog.array.ArrayLike<string>} classesToEnable An array-like object |
* containing a collection of class names to add or remove from the element. |
* @param {boolean} enabled Whether to add or remove the classes (true adds, |
* false removes). |