docs: fix typo explictly (#27798)

Closes #27796

PR Close #27798
This commit is contained in:
Michael De Wree 2018-12-21 13:55:47 +01:00 committed by Matias Niemelä
parent eea2b0f288
commit 9b91beed69
1 changed files with 2 additions and 2 deletions

View File

@ -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,