docs(core): fix links in core docs
This commit is contained in:
parent
52ebb8f0dd
commit
62005dd127
@ -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 -->
|
||||||
|
@ -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.
|
||||||
*
|
*
|
||||||
|
@ -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);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user