From e49a9b298ca1c7abb8bdb63c5f20ac1f95f179b9 Mon Sep 17 00:00:00 2001 From: JiaLiPassion Date: Mon, 26 Oct 2020 12:17:14 +0900 Subject: [PATCH] docs(core): update a typo in the comment of ngZoneEventCoalescing (#39423) PR Close #39423 --- packages/core/src/application_ref.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/application_ref.ts b/packages/core/src/application_ref.ts index bc4e605f8f..a088a4ea82 100644 --- a/packages/core/src/application_ref.ts +++ b/packages/core/src/application_ref.ts @@ -263,7 +263,7 @@ export interface BootstrapOptions { * coalesced and the change detection will be triggered multiple times. * And if this option be set to true, the change detection will be * triggered async by scheduling a animation frame. So in the case above, - * the change detection will only be trigged once. + * the change detection will only be triggered once. */ ngZoneEventCoalescing?: boolean; }