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: ```