From 3db02d244a5eb627dbf6fc756ac4f32852794c03 Mon Sep 17 00:00:00 2001 From: Kapunahele Wong Date: Wed, 10 Jan 2018 16:30:09 -0500 Subject: [PATCH] docs: fix lazy-loading example (#20306) PR Close #20306 --- .../examples/lazy-loading/src/app/app-routing.module.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aio/content/examples/lazy-loading/src/app/app-routing.module.ts b/aio/content/examples/lazy-loading/src/app/app-routing.module.ts index 5f1de5c72c..dc2f71be29 100644 --- a/aio/content/examples/lazy-loading/src/app/app-routing.module.ts +++ b/aio/content/examples/lazy-loading/src/app/app-routing.module.ts @@ -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: '',