From ca1019a950438127ec077aa6d09b04fcb6dbc1c3 Mon Sep 17 00:00:00 2001 From: George Kalpakas Date: Mon, 30 Apr 2018 14:34:27 +0300 Subject: [PATCH] docs: fix typo in tag name (`my-child` --> `app-child`) (#23606) Fixes #23599 PR Close #23606 --- aio/content/guide/lifecycle-hooks.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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