diff options
| author | Pete Bacon Darwin | 2013-10-03 23:18:45 +0100 | 
|---|---|---|
| committer | Pete Bacon Darwin | 2013-10-03 23:18:45 +0100 | 
| commit | 2acadc421692d700c015d11cee4131769837ced4 (patch) | |
| tree | 2b53245e23ac2fb3666f16ac94927b260d05a4b9 /src/ng/rootScope.js | |
| parent | c7658d94579d0e802bcdd43fe8fdee24c9a45dcb (diff) | |
| download | angular.js-2acadc421692d700c015d11cee4131769837ced4.tar.bz2 | |
docs(rootScope): improve grammar and clarity
Diffstat (limited to 'src/ng/rootScope.js')
| -rw-r--r-- | src/ng/rootScope.js | 6 | 
1 files changed, 4 insertions, 2 deletions
| diff --git a/src/ng/rootScope.js b/src/ng/rootScope.js index 540b2f02..8a182f73 100644 --- a/src/ng/rootScope.js +++ b/src/ng/rootScope.js @@ -55,8 +55,10 @@   * @description   *   * Every application has a single root {@link ng.$rootScope.Scope scope}. - * All other scopes are child scopes of the root scope. Scopes provide mechanism for watching the model and provide - * event processing life-cycle. See {@link guide/scope developer guide on scopes}. + * All other scopes are descendant scopes of the root scope. Scopes provide separation + * between the model and the view, via a mechanism for watching the model for changes. + * They also provide an event emission/broadcast and subscription facility. See the + * {@link guide/scope developer guide on scopes}.   */  function $RootScopeProvider(){    var TTL = 10; | 
