diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/loader.js | 2 | ||||
| -rw-r--r-- | src/ng/compile.js | 2 | ||||
| -rw-r--r-- | src/ng/rootScope.js | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/loader.js b/src/loader.js index 668e9a60..c253da3c 100644 --- a/src/loader.js +++ b/src/loader.js @@ -193,7 +193,7 @@ function setupModuleLoader(window) { * @param {Function} directiveFactory Factory function for creating new instance of * directives. * @description - * See {@link ng.$compileProvider.directive $compileProvider.directive()}. + * See {@link ng.$compileProvider#directive $compileProvider.directive()}. */ directive: invokeLater('$compileProvider', 'directive'), diff --git a/src/ng/compile.js b/src/ng/compile.js index 04a1a438..5f444a30 100644 --- a/src/ng/compile.js +++ b/src/ng/compile.js @@ -31,7 +31,7 @@ var NON_ASSIGNABLE_MODEL_EXPRESSION = 'Non-assignable model expression: '; * can then be used to link {@link ng.$rootScope.Scope scope} and the template together. * * The compilation is a process of walking the DOM tree and trying to match DOM elements to - * {@link ng.$compileProvider.directive directives}. For each match it + * {@link ng.$compileProvider#directive directives}. For each match it * executes corresponding template function and collects the * instance functions into a single template function which is then returned. * diff --git a/src/ng/rootScope.js b/src/ng/rootScope.js index bd11765d..d3597e3f 100644 --- a/src/ng/rootScope.js +++ b/src/ng/rootScope.js @@ -326,9 +326,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#directive directives}. * Instead a call to {@link ng.$rootScope.Scope#$apply $apply()} (typically from within a - * {@link ng.$compileProvider.directive directives}) will force a `$digest()`. + * {@link ng.$compileProvider#directive directives}) 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()} |
