From a5734b3cc5fb7d579c70d4dfbd8e8945fc7bc61c Mon Sep 17 00:00:00 2001 From: Chris Kuehl Date: Thu, 3 Jul 2014 14:24:15 -0700 Subject: [PATCH] docs(error/$rootScope/inprog): fix $timeout typo --- docs/content/error/$rootScope/inprog.ngdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/error/$rootScope/inprog.ngdoc b/docs/content/error/$rootScope/inprog.ngdoc index 2249a14e5e2a..fb5d09620a11 100644 --- a/docs/content/error/$rootScope/inprog.ngdoc +++ b/docs/content/error/$rootScope/inprog.ngdoc @@ -161,7 +161,7 @@ In this second scenario, we are already inside a `$digest` when the ngFocus dire call to `$apply()`, causing this error to be thrown. It is possible to workaround this problem by moving the call to set the focus outside of the digest, -by using `$timeOut(fn, 0, false)`, where the `false` value tells Angular not to wrap this `fn` in a +by using `$timeout(fn, 0, false)`, where the `false` value tells Angular not to wrap this `fn` in a `$apply` block: ```