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?