docs(error/$rootScope/inprog): fix $timeout typo

Closes #8071
This commit is contained in:
Chris Kuehl
2014-07-03 14:24:15 -07:00
committed by Caitlin Potter
parent 920c369f3d
commit 095848915b

View File

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