docs(style-guide): fix #1289 BAD FILENAME

closes #1290, #1289
Change structure to match style-04-06 as proposed by mrkiffie; fix double back slash
This commit is contained in:
blAck PR 2016-05-05 13:16:12 +03:00 committed by Ward Bell
parent f6f407275f
commit 5eb0dbc517
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
// #docregion
import { Component } from '@angular/core';
import { HeroListComponent } from './heroes/hero-list.component';
import { HeroListComponent } from './heroes/hero-list/hero-list.component';
import { HeroService } from './heroes/shared/hero.service';
@Component({

View File

@ -1,8 +1,8 @@
// #docregion
import { Component, OnInit } from '@angular/core';
import { HeroService } from './shared/hero.service';
import { Hero } from './shared/hero.model';
import { HeroService } from '../shared/hero.service';
import { Hero } from '../shared/hero.model';
@Component({
selector: 'toh-heroes',