diff --git a/aio/content/guide/lifecycle-hooks.md b/aio/content/guide/lifecycle-hooks.md index 7ca063e6c7..6754d200b3 100644 --- a/aio/content/guide/lifecycle-hooks.md +++ b/aio/content/guide/lifecycle-hooks.md @@ -561,7 +561,7 @@ the `AfterContentComponent`'s parent. Here's the parent's template: -Notice that the `` tag is tucked between the `` tags. +Notice that the `` tag is tucked between the `` tags. Never put content between a component's element tags *unless you intend to project that content into the component*. @@ -571,7 +571,7 @@ Now look at the component's template: The `` tag is a *placeholder* for the external content. It tells Angular where to insert that content. -In this case, the projected content is the `` from the parent. +In this case, the projected content is the `` from the parent.
Projected Content