From a7bbe9a1ff502653070d5c4eab4a118d40333a37 Mon Sep 17 00:00:00 2001 From: Phill Date: Thu, 9 Nov 2017 10:17:23 +0000 Subject: [PATCH] docs(aio): Fix typo in tutorial (#20295) PR Close #20295 --- aio/content/tutorial/toh-pt4.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/tutorial/toh-pt4.md b/aio/content/tutorial/toh-pt4.md index fe7a818f8a..8af34c8136 100644 --- a/aio/content/tutorial/toh-pt4.md +++ b/aio/content/tutorial/toh-pt4.md @@ -30,7 +30,7 @@ Using the Angular CLI, create a service called `hero`. ng generate service hero -The command generates skeleton `HeroService` class in `src/app.hero.service.ts` +The command generates skeleton `HeroService` class in `src/app/hero.service.ts` The `HeroService` class should look like the below.