aboutsummaryrefslogtreecommitdiffstats
path: root/src/ng/rootScope.js
diff options
context:
space:
mode:
authorDaniel Luz2012-09-02 20:11:52 -0300
committerMisko Hevery2012-09-11 15:11:01 -0700
commitb01c28c9004a693f6990ed0b44738ddd0c8fc241 (patch)
treeb3309474f81bf98962c7ba0003aa9ff3dbb1722c /src/ng/rootScope.js
parentc0b9e94dec21a89784febd96fbd2036abb31b14f (diff)
downloadangular.js-b01c28c9004a693f6990ed0b44738ddd0c8fc241.tar.bz2
docs($rootScope): fix typos on $new
Diffstat (limited to 'src/ng/rootScope.js')
-rw-r--r--src/ng/rootScope.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ng/rootScope.js b/src/ng/rootScope.js
index 21059cc6..56b28cc2 100644
--- a/src/ng/rootScope.js
+++ b/src/ng/rootScope.js
@@ -165,9 +165,9 @@ function $RootScopeProvider(){
* the scope and its child scopes to be permanently detached from the parent and thus stop
* participating in model change detection and listener notification by invoking.
*
- * @param {boolean} isolate if true then the scoped does not prototypically inherit from the
- * parent scope. The scope is isolated, as it can not se parent scope properties.
- * When creating widgets it is useful for the widget to not accidently read parent
+ * @param {boolean} isolate if true then the scope does not prototypically inherit from the
+ * parent scope. The scope is isolated, as it can not see parent scope properties.
+ * When creating widgets it is useful for the widget to not accidentally read parent
* state.
*
* @returns {Object} The newly created child scope.