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:
@@ -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({
|
||||
|
||||
+2
-2
@@ -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',
|
||||
Reference in New Issue
Block a user