From d11b249d3653ccf2c75f757531ba59d61c116e4b Mon Sep 17 00:00:00 2001 From: Eyal Cherevatzki Date: Mon, 16 Apr 2018 18:13:58 +0300 Subject: [PATCH] docs(aio): change `HeroDetailsComponent` to `HeroDetailComponent` (#23397) For the sake of consistency, change `HeroDetailsComponent` to `HeroDetailComponent`. PR Close #23397 --- aio/content/tutorial/toh-pt3.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aio/content/tutorial/toh-pt3.md b/aio/content/tutorial/toh-pt3.md index 8cfd88cfff..8ac0e7c366 100644 --- a/aio/content/tutorial/toh-pt3.md +++ b/aio/content/tutorial/toh-pt3.md @@ -5,10 +5,10 @@ At the moment, the `HeroesComponent` displays both the list of heroes and the se Keeping all features in one component as the application grows will not be maintainable. You'll want to split up large components into smaller sub-components, each focused on a specific task or workflow. -In this page, you'll take the first step in that direction by moving the hero details into a separate, reusable `HeroDetailsComponent`. +In this page, you'll take the first step in that direction by moving the hero details into a separate, reusable `HeroDetailComponent`. The `HeroesComponent` will only present the list of heroes. -The `HeroDetailsComponent` will present details of a selected hero. +The `HeroDetailComponent` will present details of a selected hero. ## Make the `HeroDetailComponent`