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
|
// #docregion
|
||||||
import { Component } from '@angular/core';
|
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';
|
import { HeroService } from './heroes/shared/hero.service';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
// #docregion
|
// #docregion
|
||||||
import { Component, OnInit } from '@angular/core';
|
import { Component, OnInit } from '@angular/core';
|
||||||
|
|
||||||
import { HeroService } from './shared/hero.service';
|
import { HeroService } from '../shared/hero.service';
|
||||||
import { Hero } from './shared/hero.model';
|
import { Hero } from '../shared/hero.model';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'toh-heroes',
|
selector: 'toh-heroes',
|
Loading…
Reference in New Issue