docs($rootScope): fix iteration limit described by $watch, it's actually 10 as of now

This commit is contained in:
Daniel Luz 2012-09-10 00:04:18 -03:00 committed by Misko Hevery
parent afed23c001
commit 7210b7ae1d

View file

@ -228,7 +228,7 @@ function $RootScopeProvider(){
* have adverse memory and performance implications.
* - The watch `listener` may change the model, which may trigger other `listener`s to fire. This
* is achieved by rerunning the watchers until no changes are detected. The rerun iteration
* limit is 100 to prevent an infinite loop deadlock.
* limit is 10 to prevent an infinite loop deadlock.
*
*
* If you want to be notified whenever {@link ng.$rootScope.Scope#$digest $digest} is called,