docs(aio): Fix typo in tutorial (#20295)

PR Close #20295
This commit is contained in:
Phill 2017-11-09 10:17:23 +00:00 committed by Jason Aden
parent ffe323036e
commit a7bbe9a1ff
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ Using the Angular CLI, create a service called `hero`.
ng generate service hero
</code-example>
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.
<code-example path="toh-pt4/src/app/hero.service.1.ts" region="new"