From 69f006cd89b5fc08ed87655368eef50ebcc0e75a Mon Sep 17 00:00:00 2001 From: gaohailang Date: Fri, 4 Nov 2016 02:23:20 +0800 Subject: [PATCH] docs(change_detection): fix typo(ChangeDetectorStatus enum comment CheckedOnce -> CheckOnce) (#12683) --- modules/@angular/core/src/change_detection/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/@angular/core/src/change_detection/constants.ts b/modules/@angular/core/src/change_detection/constants.ts index 123411c89c..2ac1ecf136 100644 --- a/modules/@angular/core/src/change_detection/constants.ts +++ b/modules/@angular/core/src/change_detection/constants.ts @@ -30,7 +30,7 @@ export enum ChangeDetectionStrategy { */ export enum ChangeDetectorStatus { /** - * `CheckedOnce` means that after calling detectChanges the mode of the change detector + * `CheckOnce` means that after calling detectChanges the mode of the change detector * will become `Checked`. */ CheckOnce,