diff options
| author | Daniel Luz | 2012-09-10 00:04:18 -0300 |
|---|---|---|
| committer | Misko Hevery | 2012-09-11 16:19:44 -0700 |
| commit | 7210b7ae1d50a4a65fef24c2009b0da927ccfdc1 (patch) | |
| tree | 8987e600f9862e0db2902ce671bb1b71a4abccab /src/ng/rootScope.js | |
| parent | afed23c001ef6350ab9f63008828d7bfea1ada55 (diff) | |
| download | angular.js-7210b7ae1d50a4a65fef24c2009b0da927ccfdc1.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.js | 2 |
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, |
