aboutsummaryrefslogtreecommitdiffstats
path: root/src/ng/directive/ngInit.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/ng/directive/ngInit.js')
-rw-r--r--src/ng/directive/ngInit.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ng/directive/ngInit.js b/src/ng/directive/ngInit.js
index 6371733d..56426eca 100644
--- a/src/ng/directive/ngInit.js
+++ b/src/ng/directive/ngInit.js
@@ -11,12 +11,12 @@
*
* <div class="alert alert-error">
* The only appropriate use of `ngInit` is for aliasing special properties of
- * {@link api/ng.directive:ngRepeat `ngRepeat`}, as seen in the demo below. Besides this case, you
+ * {@link ng.directive:ngRepeat `ngRepeat`}, as seen in the demo below. Besides this case, you
* should use {@link guide/controller controllers} rather than `ngInit`
* to initialize values on a scope.
* </div>
* <div class="alert alert-warning">
- * **Note**: If you have assignment in `ngInit` along with {@link api/ng.$filter `$filter`}, make
+ * **Note**: If you have assignment in `ngInit` along with {@link ng.$filter `$filter`}, make
* sure you have parenthesis for correct precedence:
* <pre class="prettyprint">
* <div ng-init="test1 = (data | orderBy:'name')"></div>