From 79941d2527c0d9f06f9a6a4ab05fb341076a4276 Mon Sep 17 00:00:00 2001 From: Daniel Luz Date: Mon, 10 Sep 2012 00:04:18 -0300 Subject: docs($rootScope): fix iteration limit described by $watch, it's actually 10 as of now --- src/ng/rootScope.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ng/rootScope.js') 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, -- cgit v1.2.3