fix(core): don't refer to `hydration` in docs anymore.

Closes #18458
This commit is contained in:
Tobias Bosch 2017-10-13 08:53:44 -07:00 committed by GitHub
parent 653a211743
commit 02394d2d80
1 changed files with 2 additions and 2 deletions

View File

@ -14,12 +14,12 @@
*/
export enum ChangeDetectionStrategy {
/**
* `OnPush` means that the change detector's mode will be set to `CheckOnce` during hydration.
* `OnPush` means that the change detector's mode will be initially set to `CheckOnce`.
*/
OnPush = 0,
/**
* `Default` means that the change detector's mode will be set to `CheckAlways` during hydration.
* `Default` means that the change detector's mode will be initially set to `CheckAlways`.
*/
Default = 1,
}