diff --git a/modules/angular2/src/core/change_detection/change_detector_ref.ts b/modules/angular2/src/core/change_detection/change_detector_ref.ts index bd779ff2d7..a6561a4747 100644 --- a/modules/angular2/src/core/change_detection/change_detector_ref.ts +++ b/modules/angular2/src/core/change_detection/change_detector_ref.ts @@ -3,7 +3,7 @@ import {ChangeDetectionStrategy} from './constants'; export abstract class ChangeDetectorRef { /** - * Marks all {@link OnPush} ancestors as to be checked. + * Marks all {@link ChangeDetectionStrategy#OnPush} ancestors as to be checked. * * * @@ -47,7 +47,8 @@ export abstract class ChangeDetectorRef { * * 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. * * @@ -104,7 +105,8 @@ export abstract class ChangeDetectorRef { /** * 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. * * diff --git a/modules/angular2/src/core/forms/directives/ng_form.ts b/modules/angular2/src/core/forms/directives/ng_form.ts index 15bcded85f..0cea08f6b6 100644 --- a/modules/angular2/src/core/forms/directives/ng_form.ts +++ b/modules/angular2/src/core/forms/directives/ng_form.ts @@ -30,7 +30,7 @@ const formDirectiveProvider = * # Structure * * 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 * JSON object that mirrors the form structure. * diff --git a/modules/angular2/src/core/metadata.ts b/modules/angular2/src/core/metadata.ts index 96d6d55610..5f15a0cf63 100644 --- a/modules/angular2/src/core/metadata.ts +++ b/modules/angular2/src/core/metadata.ts @@ -580,7 +580,7 @@ export var Input: InputFactory = makePropDecorator(InputMetadata); /** * {@link OutputMetadata} factory function. * - * See {@link OutputMetadatas}. + * See {@link OutputMetadata}. */ export var Output: OutputFactory = makePropDecorator(OutputMetadata);