aboutsummaryrefslogtreecommitdiffstats
path: root/src/ng/rootScope.js
diff options
context:
space:
mode:
authorDave Peticolas2013-10-02 09:05:11 -0700
committerPete Bacon Darwin2013-10-03 23:14:55 +0100
commit2c00476baeecc55fbfb4df167858c9ac3b0ed314 (patch)
tree6ef49c1cd49bd3888b5fb62a247c1511c37497c6 /src/ng/rootScope.js
parent2e5680a4e3178803c02ac56e1f0388766b32466c (diff)
downloadangular.js-2c00476baeecc55fbfb4df167858c9ac3b0ed314.tar.bz2
docs(rootScope): improve grammar and clarity
Closes #4234
Diffstat (limited to 'src/ng/rootScope.js')
-rw-r--r--src/ng/rootScope.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/ng/rootScope.js b/src/ng/rootScope.js
index 32142b38..08a2eff5 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;