From 1dd2eaa7d2bb12aac43ad6f89aa48f610d739ed8 Mon Sep 17 00:00:00 2001 From: Stephon Harris Date: Sun, 3 Dec 2017 10:58:04 -0600 Subject: [PATCH] docs: fix typos and missing word in tutorial (#20764) PR Close #20764 --- aio/content/tutorial/toh-pt6.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aio/content/tutorial/toh-pt6.md b/aio/content/tutorial/toh-pt6.md index 6683e6bce1..0fe2b9ce80 100644 --- a/aio/content/tutorial/toh-pt6.md +++ b/aio/content/tutorial/toh-pt6.md @@ -250,7 +250,7 @@ There are three significant differences from `getHeroes()`. ## Update heroes -Editing a hero's name in the _hero detail_ view. +Edit a hero's name in the _hero detail_ view. As you type, the hero name updates the heading at the top of the page. But when you click the "go back button", the changes are lost. @@ -439,7 +439,7 @@ Create a `HeroSearchComponent` with the CLI. ng generate component hero-search -The CLI generates the three `HeroSearchComponent` and adds the component to the `AppModule' declarations +The CLI generates the three `HeroSearchComponent` files and adds the component to the `AppModule` declarations Replace the generated `HeroSearchComponent` _template_ with a text box and a list of matching search results like this.