diff --git a/docs/content/guide/animations.ngdoc b/docs/content/guide/animations.ngdoc index 741cb5334ccb..0992d3fde389 100644 --- a/docs/content/guide/animations.ngdoc +++ b/docs/content/guide/animations.ngdoc @@ -313,8 +313,8 @@ This function can be used to enable / disable animations in two different ways: With a single `boolean` argument, it enables / disables animations globally: `$animate.enabled(false)` disables all animations in your app. -When the second argument is a native DOM or jQuery element, the function enables / disables -animations on this element *and all its children*: `$animate.enabled(false, myElement)`. This is the +When the first argument is a native DOM or jQuery element, the function enables / disables +animations on this element *and all its children*: `$animate.enabled(myElement, false)`. This is the most flexible way to change the animation state. For example, even if you have used it to disable animations on a parent element, you can still re-enable it for a child element. And compared to the `classNameFilter`, you can change the animation status at runtime instead of during the config phase.