Skip to content
This repository was archived by the owner on Jun 25, 2019. It is now read-only.

Commit 9a1aa62

Browse files
author
Felix Gladisch
committed
routing comments fixed
1 parent cebeaf9 commit 9a1aa62

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/app/app.routing.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ import { HomeComponent } from './home';
55
import { AboutComponent } from './about';
66

77
export const appRoutes: Routes = [
8-
// #/ -> #/home
8+
// "/" -> "/home"
99
{ path: '', redirectTo: 'home', pathMatch: 'full' },
10-
// #/home
10+
// "/home"
1111
{ path: 'home', component: HomeComponent },
12-
// #/about
12+
// "/about"
1313
{ path: 'about', component: AboutComponent },
14-
// #/xyz -> #/home
14+
// "/xyz" -> "/home"
1515
{ path: '**', redirectTo: 'home' }
1616
];
1717

0 commit comments

Comments
 (0)