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:
parent
f6f407275f
commit
5eb0dbc517
|
@ -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({
|
||||
|
|
|
@ -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',
|
Loading…
Reference in New Issue