From b5ca275590f5838096e6e874548d1db1e11344d3 Mon Sep 17 00:00:00 2001 From: Pascal Zwick Date: Tue, 20 Feb 2018 22:12:13 +0100 Subject: [PATCH] docs(aio): Fix name of component (#22332) PR Close #22332 --- aio/content/tutorial/toh-pt3.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/tutorial/toh-pt3.md b/aio/content/tutorial/toh-pt3.md index 0886ea6aa2..8cfd88cfff 100644 --- a/aio/content/tutorial/toh-pt3.md +++ b/aio/content/tutorial/toh-pt3.md @@ -96,7 +96,7 @@ Bind the `HeroesComponent.selectedHero` to the element's `hero` property like th `[hero]="selectedHero"` is an Angular [property binding](guide/template-syntax#property-binding). It's a _one way_ data binding from -the `selectedHero` property of the `HeroComponent` to the `hero` property of the target element, which maps to the `hero` property of the `HeroDetailComponent`. +the `selectedHero` property of the `HeroesComponent` to the `hero` property of the target element, which maps to the `hero` property of the `HeroDetailComponent`. Now when the user clicks a hero in the list, the `selectedHero` changes. When the `selectedHero` changes, the _property binding_ updates `hero`