From 9b91beed69c909bf3f292fb9562247bf3743195a Mon Sep 17 00:00:00 2001 From: Michael De Wree Date: Fri, 21 Dec 2018 13:55:47 +0100 Subject: [PATCH] docs: fix typo explictly (#27798) Closes #27796 PR Close #27798 --- packages/core/src/change_detection/constants.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/core/src/change_detection/constants.ts b/packages/core/src/change_detection/constants.ts index 60d80cf23a..9d6eed4759 100644 --- a/packages/core/src/change_detection/constants.ts +++ b/packages/core/src/change_detection/constants.ts @@ -17,7 +17,7 @@ export enum ChangeDetectionStrategy { /** * Use the `CheckOnce` strategy, meaning that automatic change detection is deactivated * until reactivated by setting the strategy to `Default` (`CheckAlways`). - * Change detection can still be explictly invoked. + * Change detection can still be explicitly invoked. */ OnPush = 0, @@ -46,7 +46,7 @@ export enum ChangeDetectorStatus { Checked, /** - * A state in which change detection continues automatically until explictly + * A state in which change detection continues automatically until explicitly * deactivated. */ CheckAlways,