From 3a61bb82b32055ebd871af7cc8c324e43271050a Mon Sep 17 00:00:00 2001 From: aschaap Date: Sun, 11 Apr 2021 12:37:30 -0400 Subject: [PATCH] docs: replaced erroneous instances of `HeroDetailsComponent` with `HeroDetailComponent` (#41569) PR Close #41569 --- aio/content/tutorial/toh-pt5.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/aio/content/tutorial/toh-pt5.md b/aio/content/tutorial/toh-pt5.md index a3f3508160..3cc9ff104b 100644 --- a/aio/content/tutorial/toh-pt5.md +++ b/aio/content/tutorial/toh-pt5.md @@ -259,8 +259,8 @@ After the browser refreshes you can navigate freely between the two views by cli {@a hero-details} ## Navigating to hero details -The `HeroDetailsComponent` displays details of a selected hero. -At the moment the `HeroDetailsComponent` is only visible at the bottom of the `HeroesComponent` +The `HeroDetailComponent` displays details of a selected hero. +At the moment the `HeroDetailComponent` is only visible at the bottom of the `HeroesComponent` The user should be able to get to these details in three ways. @@ -268,7 +268,7 @@ The user should be able to get to these details in three ways. 1. By clicking a hero in the heroes list. 1. By pasting a "deep link" URL into the browser address bar that identifies the hero to display. -In this section, you'll enable navigation to the `HeroDetailsComponent` +In this section, you'll enable navigation to the `HeroDetailComponent` and liberate it from the `HeroesComponent`. ### Delete _hero details_ from `HeroesComponent`