diff options
Diffstat (limited to 'src/ng/rootScope.js')
| -rw-r--r-- | src/ng/rootScope.js | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/src/ng/rootScope.js b/src/ng/rootScope.js index aa3a6f13..da4e30c2 100644 --- a/src/ng/rootScope.js +++ b/src/ng/rootScope.js @@ -85,7 +85,7 @@ function $RootScopeProvider(){       * @description       * A root scope can be retrieved using the {@link ng.$rootScope $rootScope} key from the       * {@link AUTO.$injector $injector}. Child scopes are created using the -     * {@link ng.$rootScope.Scope#$new $new()} method. (Most scopes are created automatically when +     * {@link ng.$rootScope.Scope#methods_$new $new()} method. (Most scopes are created automatically when       * compiled HTML template is executed.)       *       * Here is a simple scope snippet to show how you can interact with the scope. @@ -466,9 +466,9 @@ function $RootScopeProvider(){         *         * Usually, you don't call `$digest()` directly in         * {@link ng.directive:ngController controllers} or in -       * {@link ng.$compileProvider#directive directives}. +       * {@link ng.$compileProvider#methods_directive directives}.         * Instead, you should call {@link ng.$rootScope.Scope#$apply $apply()} (typically from within a -       * {@link ng.$compileProvider#directive directives}), which will force a `$digest()`. +       * {@link ng.$compileProvider#methods_directive directives}), which will force a `$digest()`.         *         * If you want to be notified whenever `$digest()` is called,         * you can register a `watchExpression` function with {@link ng.$rootScope.Scope#$watch $watch()} | 
