From 271700cbb605eada5fa73e5d2c4924dfaa430fba Mon Sep 17 00:00:00 2001 From: Yuvaraj <15032282+yuvgeek@users.noreply.github.com> Date: Mon, 19 Jul 2021 13:38:31 +0530 Subject: [PATCH] docs: fix the selector in component interaction guide (#42891) The selector for the `CountdownTimerComponent` is `app-countdown-timer` not `countdown-timer`. PR Close #42891 --- aio/content/guide/component-interaction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/component-interaction.md b/aio/content/guide/component-interaction.md index 8d079cab31..f5be188b2d 100644 --- a/aio/content/guide/component-interaction.md +++ b/aio/content/guide/component-interaction.md @@ -258,7 +258,7 @@ The `CountdownLocalVarParentComponent` that hosts the timer component is as foll The parent component cannot data bind to the child's `start` and `stop` methods nor to its `seconds` property. -You can place a local variable, `#timer`, on the tag `` representing the child component. +You can place a local variable, `#timer`, on the tag `` representing the child component. That gives you a reference to the child component and the ability to access *any of its properties or methods* from within the parent template.