docs(toh-pt6): correct DetailHeroComponent to HeroDetailComponent

closes #1550
This commit is contained in:
Christopher Thorne 2016-05-29 20:52:25 +01:00 committed by Ward Bell
parent 3d868da4b7
commit 2d27097d55
1 changed files with 1 additions and 1 deletions

View File

@ -218,7 +218,7 @@ code-example(format="." language="bash").
In the following section we will update our components to use our new methods to add, edit and delete heroes.
### Add/Edit in the *HeroDetailComponent*
We already have `HeroDetailComponent` for viewing details about a specific hero. Add and Edit are natural extensions of the detail view, so we are able to reuse `DetailHeroComponent` with a few tweaks. The original component was created to render existing data, but to add new data we have to initialize the `hero` property to an empty `Hero` object.
We already have `HeroDetailComponent` for viewing details about a specific hero. Add and Edit are natural extensions of the detail view, so we are able to reuse `HeroDetailComponent` with a few tweaks. The original component was created to render existing data, but to add new data we have to initialize the `hero` property to an empty `Hero` object.
+makeExample('toh-6/ts/app/hero-detail.component.ts', 'ngOnInit', 'app/hero-detail.component.ts (ngOnInit)')(format=".")