From 73def735cf1d961a93ba24b08b32542337478187 Mon Sep 17 00:00:00 2001 From: Lucas Galfaso Date: Thu, 20 Nov 2014 23:31:40 +0100 Subject: [PATCH] docs(ngAnimate): Fix typo The ngAnimate makes reference to a function `$animateProvider.classNamePrefix` that does not exist, the correct function is `$animateProvider.classNameFilter` Closes #10142 --- src/ngAnimate/animate.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ngAnimate/animate.js b/src/ngAnimate/animate.js index 0481438bbc25..c828b26b4085 100644 --- a/src/ngAnimate/animate.js +++ b/src/ngAnimate/animate.js @@ -239,7 +239,7 @@ * You then configure `$animate` to enforce this prefix: * * ```js - * $animateProvider.classNamePrefix(/animate-/); + * $animateProvider.classNameFilter(/animate-/); * ``` * *