aboutsummaryrefslogtreecommitdiffstats
path: root/src/ngAnimate/animate.js
diff options
context:
space:
mode:
authorPeter Bacon Darwin2014-02-26 11:46:02 +0000
committerPeter Bacon Darwin2014-02-26 11:47:22 +0000
commit332e935048d161764046b43fe6599e1db2afc3b6 (patch)
treee560b374b78b75e9bf27d67dbf8d5f2de6598f2d /src/ngAnimate/animate.js
parent30c8207e0f2e10a6f02a0c2ba16825ad27092108 (diff)
downloadangular.js-332e935048d161764046b43fe6599e1db2afc3b6.tar.bz2
docs(*): fix jsdoc type expressions
These errors in the docs were preventing some parts of the docs from being parsed.
Diffstat (limited to 'src/ngAnimate/animate.js')
-rw-r--r--src/ngAnimate/animate.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ngAnimate/animate.js b/src/ngAnimate/animate.js
index 6ccf6a5d..6b7fbcce 100644
--- a/src/ngAnimate/animate.js
+++ b/src/ngAnimate/animate.js
@@ -567,7 +567,7 @@ angular.module('ngAnimate', ['ng'])
* removed from it
* @param {string} add the CSS classes which will be added to the element
* @param {string} remove the CSS class which will be removed from the element
- * @param {function=} done the callback function (if provided) that will be fired after the
+ * @param {Function=} done the callback function (if provided) that will be fired after the
* CSS classes have been set on the element
*/
setClass : function(element, add, remove, doneCallback) {
@@ -583,7 +583,7 @@ angular.module('ngAnimate', ['ng'])
* @function
*
* @param {boolean=} value If provided then set the animation on or off.
- * @param {jQuery/jqLite element=} element If provided then the element will be used to represent the enable/disable operation
+ * @param {DOMElement=} element If provided then the element will be used to represent the enable/disable operation
* @return {boolean} Current animation state.
*
* @description