From 1c30df2a5fb0f700fb82276e7f0b34ab09bfebf5 Mon Sep 17 00:00:00 2001 From: Hassen Gaaya Date: Fri, 30 Jun 2023 01:02:06 +0200 Subject: [PATCH] docs(docs-infra): fix wrong mention of the parent component instead of child one (#50898) replace the word Parent with Child in the code example since it's the child component that should be mentioned at this level of the code PR Close #50898 --- aio/content/guide/hierarchical-dependency-injection.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/hierarchical-dependency-injection.md b/aio/content/guide/hierarchical-dependency-injection.md index 842803ff26f..c46b02c1cff 100644 --- a/aio/content/guide/hierarchical-dependency-injection.md +++ b/aio/content/guide/hierarchical-dependency-injection.md @@ -476,7 +476,7 @@ In the logical tree, this is represented as follows: <app-child @Provide(FlowerService="🌻") @Inject(FlowerService)=>"🌻"> <!-- search ends here --> <#VIEW> <!-- search starts here --> - <h2>Parent Component</h2> + <h2>Child Component</h2> <p>Emoji from FlowerService: {{flower.emoji}} (🌻)</p> </#VIEW> </app-child>