File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed
modules/angular2/src/core Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import {ChangeDetectionStrategy} from './constants';
33
44export 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 -->
Original file line number Diff line number Diff 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 *
Original file line number Diff line number Diff 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 */
585585export var Output : OutputFactory = makePropDecorator ( OutputMetadata ) ;
586586
You can’t perform that action at this time.
0 commit comments