From 666e6d15fa6f89e5b95211be0fb1a486f123508b Mon Sep 17 00:00:00 2001 From: Trung Vo Date: Thu, 25 Jun 2020 10:34:32 +0800 Subject: [PATCH] docs: Replace $emdash; with an actual em dash (#37723) fix documentation in the lifecycle hooks guide where $emdash; was not being replaced by an actual em dash (-) PR Close #37723 --- aio/content/guide/lifecycle-hooks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/lifecycle-hooks.md b/aio/content/guide/lifecycle-hooks.md index a4243b2866..46d06fbb98 100644 --- a/aio/content/guide/lifecycle-hooks.md +++ b/aio/content/guide/lifecycle-hooks.md @@ -495,7 +495,7 @@ for one turn of the browser's JavaScript cycle, which triggers a new change-dete #### Write lean hook methods to avoid performance problems -When you run the *AfterView* sample, notice how frequently Angular calls `AfterViewChecked()`$emdash;often when there are no changes of interest. +When you run the *AfterView* sample, notice how frequently Angular calls `AfterViewChecked()`-often when there are no changes of interest. Be very careful about how much logic or computation you put into one of these methods.