From 5a34b753089c9b9f085f74b61bddef83a5a1e1f1 Mon Sep 17 00:00:00 2001 From: Corbin Crutchley Date: Mon, 2 Jan 2023 10:43:27 -0800 Subject: [PATCH] chore: remove TODO --- content/blog/angular-internals-zonejs/index.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/content/blog/angular-internals-zonejs/index.md b/content/blog/angular-internals-zonejs/index.md index 2d559f46..9f05af0e 100644 --- a/content/blog/angular-internals-zonejs/index.md +++ b/content/blog/angular-internals-zonejs/index.md @@ -467,8 +467,6 @@ export class AppComponent { This `detectChanges` then calls the `refreshView` call that we saw earlier. That, in turn, calls `executeTemplate` with `RenderFlags.Update`, which gets passed to the component's `template` function, which was output by `NGC`. - - ## How does _Angular_ know to call `detectChanges`? {#intro-to-tick} > Assuming you've done your research and `detectChanges` _really_ is what calls our component to `Update`, what within Angular calls `detectChanges` itself?