docs(aio): upgrade to v5 and cli 1.5

PR Close #20077
This commit is contained in:
Jesus Rodriguez
2017-11-01 21:18:03 +01:00
committed by Matias Niemelä
parent 171ae154c2
commit ca129ba549
11 changed files with 516 additions and 184 deletions

View File

@ -11,7 +11,7 @@ export class HeroService {
getHeroes() {
return this.http.get('api/heroes')
.map((response: Response) => <Hero[]>response.json().data);
.map((response: Response) => <Hero[]>response.json());
}
}
// #enddocregion example