From 461213996e7555b0134a51917755c3590bc839d1 Mon Sep 17 00:00:00 2001 From: Karan Gandhi Date: Wed, 29 Jun 2016 22:49:03 +0530 Subject: [PATCH] docs(toh-5/ts): Minor error fixed. There are no leading slashes in the path. --- public/docs/_examples/toh-5/ts/app/app.routes.2.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/docs/_examples/toh-5/ts/app/app.routes.2.ts b/public/docs/_examples/toh-5/ts/app/app.routes.2.ts index 45ddeb9230..47311fcd8d 100644 --- a/public/docs/_examples/toh-5/ts/app/app.routes.2.ts +++ b/public/docs/_examples/toh-5/ts/app/app.routes.2.ts @@ -4,7 +4,7 @@ import { HeroesComponent } from './heroes.component'; const routes: RouterConfig = [ { - path: '/heroes', + path: 'heroes', component: HeroesComponent } ];