docs(core): fix links in core docs

This commit is contained in:
vsavkin 2015-10-11 14:42:36 -07:00
parent 52ebb8f0dd
commit 62005dd127
3 changed files with 7 additions and 5 deletions

View File

@ -3,7 +3,7 @@ import {ChangeDetectionStrategy} from './constants';
export abstract class ChangeDetectorRef { export abstract class ChangeDetectorRef {
/** /**
* Marks all {@link OnPush} ancestors as to be checked. * Marks all {@link ChangeDetectionStrategy#OnPush} ancestors as to be checked.
* *
* <!-- TODO: Add a link to a chapter on OnPush components --> * <!-- TODO: Add a link to a chapter on OnPush components -->
* *
@ -47,7 +47,8 @@ export abstract class ChangeDetectorRef {
* *
* The detached change detector will not be checked until it is reattached. * The detached change detector will not be checked until it is reattached.
* *
* This can also be used in combination with {@link detectChanges} to implement local change * This can also be used in combination with {@link ChangeDetectorRef#detectChanges} to implement
* local change
* detection checks. * detection checks.
* *
* <!-- TODO: Add a link to a chapter on detach/reattach/local digest --> * <!-- TODO: Add a link to a chapter on detach/reattach/local digest -->
@ -104,7 +105,8 @@ export abstract class ChangeDetectorRef {
/** /**
* Checks the change detector and its children. * Checks the change detector and its children.
* *
* This can also be used in combination with {@link detach} to implement local change detection * This can also be used in combination with {@link ChangeDetectorRef#detach} to implement local
* change detection
* checks. * checks.
* *
* <!-- TODO: Add a link to a chapter on detach/reattach/local digest --> * <!-- TODO: Add a link to a chapter on detach/reattach/local digest -->

View File

@ -30,7 +30,7 @@ const formDirectiveProvider =
* # Structure * # Structure
* *
* An Angular form is a collection of {@link Control}s in some hierarchy. * An Angular form is a collection of {@link Control}s in some hierarchy.
* `Control`s can be at the top level or can be organized in {@link ControlGroups} * `Control`s can be at the top level or can be organized in {@link ControlGroup}s
* or {@link ControlArray}s. This hierarchy is reflected in the form's `value`, a * or {@link ControlArray}s. This hierarchy is reflected in the form's `value`, a
* JSON object that mirrors the form structure. * JSON object that mirrors the form structure.
* *

View File

@ -580,7 +580,7 @@ export var Input: InputFactory = makePropDecorator(InputMetadata);
/** /**
* {@link OutputMetadata} factory function. * {@link OutputMetadata} factory function.
* *
* See {@link OutputMetadatas}. * See {@link OutputMetadata}.
*/ */
export var Output: OutputFactory = makePropDecorator(OutputMetadata); export var Output: OutputFactory = makePropDecorator(OutputMetadata);