X Tutup
Skip to content

Commit 62005dd

Browse files
committed
docs(core): fix links in core docs
1 parent 52ebb8f commit 62005dd

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

modules/angular2/src/core/change_detection/change_detector_ref.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {ChangeDetectionStrategy} from './constants';
33

44
export abstract class ChangeDetectorRef {
55
/**
6-
* Marks all {@link OnPush} ancestors as to be checked.
6+
* Marks all {@link ChangeDetectionStrategy#OnPush} ancestors as to be checked.
77
*
88
* <!-- TODO: Add a link to a chapter on OnPush components -->
99
*
@@ -47,7 +47,8 @@ export abstract class ChangeDetectorRef {
4747
*
4848
* The detached change detector will not be checked until it is reattached.
4949
*
50-
* This can also be used in combination with {@link detectChanges} to implement local change
50+
* This can also be used in combination with {@link ChangeDetectorRef#detectChanges} to implement
51+
* local change
5152
* detection checks.
5253
*
5354
* <!-- TODO: Add a link to a chapter on detach/reattach/local digest -->
@@ -104,7 +105,8 @@ export abstract class ChangeDetectorRef {
104105
/**
105106
* Checks the change detector and its children.
106107
*
107-
* This can also be used in combination with {@link detach} to implement local change detection
108+
* This can also be used in combination with {@link ChangeDetectorRef#detach} to implement local
109+
* change detection
108110
* checks.
109111
*
110112
* <!-- TODO: Add a link to a chapter on detach/reattach/local digest -->

modules/angular2/src/core/forms/directives/ng_form.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const formDirectiveProvider =
3030
* # Structure
3131
*
3232
* An Angular form is a collection of {@link Control}s in some hierarchy.
33-
* `Control`s can be at the top level or can be organized in {@link ControlGroups}
33+
* `Control`s can be at the top level or can be organized in {@link ControlGroup}s
3434
* or {@link ControlArray}s. This hierarchy is reflected in the form's `value`, a
3535
* JSON object that mirrors the form structure.
3636
*

modules/angular2/src/core/metadata.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,7 @@ export var Input: InputFactory = makePropDecorator(InputMetadata);
580580
/**
581581
* {@link OutputMetadata} factory function.
582582
*
583-
* See {@link OutputMetadatas}.
583+
* See {@link OutputMetadata}.
584584
*/
585585
export var Output: OutputFactory = makePropDecorator(OutputMetadata);
586586

0 commit comments

Comments
 (0)
X Tutup