docs(aio): fix TOH inclusion of HeroesService. (#21228)

Change docs where the MessageService is referenced

Fixes #20398

PR Close #21228
This commit is contained in:
jhenderson2099
2017-12-30 21:37:11 -05:00
committed by Miško Hevery
parent 7e928db204
commit 545fdf10e2
2 changed files with 19 additions and 2 deletions

View File

@ -21,7 +21,14 @@ import { MessagesComponent } from './messages/messages.component';
FormsModule
],
// #docregion providers
providers: [ HeroService, MessageService ],
// #docregion providers-heroservice
providers: [
HeroService,
// #enddocregion providers-heroservice
MessageService
// #docregion providers-heroservice
],
// #enddocregion providers-heroservice
// #enddocregion providers
bootstrap: [ AppComponent ]
})