aboutsummaryrefslogtreecommitdiffstats
path: root/src/ng/rootScope.js
diff options
context:
space:
mode:
authorDaniel Luz2012-09-10 00:04:18 -0300
committerMisko Hevery2012-09-11 15:11:02 -0700
commit79941d2527c0d9f06f9a6a4ab05fb341076a4276 (patch)
treec083c95ff1c48bd699c2dca74f5f03f8e6c97aa6 /src/ng/rootScope.js
parent03ebecd5eb419da79cb3bcef270cac424c4743de (diff)
downloadangular.js-79941d2527c0d9f06f9a6a4ab05fb341076a4276.tar.bz2
docs($rootScope): fix iteration limit described by $watch, it's actually 10 as of now
Diffstat (limited to 'src/ng/rootScope.js')
-rw-r--r--src/ng/rootScope.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ng/rootScope.js b/src/ng/rootScope.js
index b6de3005..bd712e07 100644
--- a/src/ng/rootScope.js
+++ b/src/ng/rootScope.js
@@ -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,