docs(style-guide): clean 05-15

closes #1487
This commit is contained in:
Foxandxss 2016-05-23 16:16:45 +02:00 committed by Ward Bell
parent 9ed12f465f
commit 9784c2fa16
1 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
// #docregion example
import { Component, OnInit } from '@angular/core';
import { Hero, HeroService } from '../shared/index';
import { Hero, HeroService } from '../shared';
@Component({
selector: 'toh-hero-list',
@ -10,13 +10,13 @@ import { Hero, HeroService } from '../shared/index';
export class HeroListComponent implements OnInit {
heroes: Hero[];
constructor(private heroService: HeroService) {}
getHeros() {
getHeroes() {
this.heroes = [];
this.heroService.getHeroes()
.subscribe(heroes => this.heroes = heroes);
}
ngOnInit() {
this.getHeros();
this.getHeroes();
}
}
// #enddocregion example