From 02394d2d8021c26c4ab80d89efcbba436120d96f Mon Sep 17 00:00:00 2001 From: Tobias Bosch Date: Fri, 13 Oct 2017 08:53:44 -0700 Subject: [PATCH] fix(core): don't refer to `hydration` in docs anymore. Closes #18458 --- 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 21129486fb..093b7bfd2c 100644 --- a/packages/core/src/change_detection/constants.ts +++ b/packages/core/src/change_detection/constants.ts @@ -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, }