docs(toh-5/ts): Minor error fixed.

There are no leading slashes in the path.
This commit is contained in:
Karan Gandhi 2016-06-29 22:49:03 +05:30 committed by Naomi Black
parent 868abbe5c7
commit 461213996e
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ import { HeroesComponent } from './heroes.component';
const routes: RouterConfig = [ const routes: RouterConfig = [
{ {
path: '/heroes', path: 'heroes',
component: HeroesComponent component: HeroesComponent
} }
]; ];