Skip to content

Commit

Permalink
docs: fix lazy-loading example (#20306)
Browse files Browse the repository at this point in the history
PR Close #20306
  • Loading branch information
kapunahelewong authored and alexeagle committed Jan 11, 2018
1 parent 50b6056 commit 3db02d2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ import { Routes, RouterModule } from '@angular/router';
const routes: Routes = [
{
path: 'customers',
loadChildren: './app/customers/customers.module#CustomersModule'
loadChildren: 'app/customers/customers.module#CustomersModule'
},
{
path: 'orders',
loadChildren: './app/orders/orders.module#OrdersModule'
loadChildren: 'app/orders/orders.module#OrdersModule'
},
{
path: '',
Expand Down

0 comments on commit 3db02d2

Please sign in to comment.