diff --git a/aio/content/guide/cheatsheet.md b/aio/content/guide/cheatsheet.md index 7bdce13171..f5104b8857 100644 --- a/aio/content/guide/cheatsheet.md +++ b/aio/content/guide/cheatsheet.md @@ -311,11 +311,11 @@ so the @Directive configuration applies to components as well

ngAfterViewInit() { ... } -

Called after ngAfterContentInit when the component's view has been initialized. Applies to components only.

+

Called after ngAfterContentInit when the component's views and child views / the view that a directive is in has been initialized.

ngAfterViewChecked() { ... } -

Called after every check of the component's view. Applies to components only.

+

Called after every check of the component's views and child views / the view that a directive is in.

ngOnDestroy() { ... }