@@ -69,8 +69,8 @@ import {DEFAULT} from 'angular2/change_detection';
6969 *
7070 * To inject element-specific special objects, declare the constructor parameter as:
7171 * - `element: ElementRef` to obtain a reference to logical element in the view.
72- * - `viewContainer: ViewContainerRef` to control child template instantiation, for { @link
73- * Directive} directives only
72+ * - `viewContainer: ViewContainerRef` to control child template instantiation, for
73+ * { @link Directive} directives only
7474 * - `bindingPropagation: BindingPropagation` to control change detection in a more granular way.
7575 *
7676 * ## Example
@@ -514,7 +514,7 @@ export class Directive extends Injectable {
514514 * For example, we could write a binding that updates the directive on structural changes, rather
515515 * than on reference changes, as normally occurs in change detection.
516516 *
517- * See {@link Pipe} and {@link keyValDiff} documentation for more details.
517+ * See {@link Pipe} and {@link pipes/ keyValDiff} documentation for more details.
518518 *
519519 * ```
520520 * @Directive ({
@@ -705,7 +705,7 @@ export class Directive extends Injectable {
705705 /**
706706 * Specifies a set of lifecycle hostListeners in which the directive participates.
707707 *
708- * See {@link onChange}, {@link onDestroy}, {@link onAllChangesDone} for details.
708+ * See {@link annotations/ onChange}, {@link annotations/ onDestroy}, {@link annotations/ onAllChangesDone} for details.
709709 */
710710 lifecycle : List < LifecycleEvent > ;
711711
@@ -787,8 +787,8 @@ export class Directive extends Injectable {
787787 * When a component is instantiated, Angular
788788 * - creates a shadow DOM for the component.
789789 * - loads the selected template into the shadow DOM.
790- * - creates a child {@link Injector} which is configured with the `appInjector` for the { @link
791- * Component}.
790+ * - creates a child {@link Injector} which is configured with the `appInjector` for the
791+ * { @link Component}.
792792 *
793793 * All template expressions and statements are then evaluated against the component instance.
794794 *
0 commit comments