docs: fix lazy loading example dir name (#21475)

PR Close #21475
This commit is contained in:
Kapunahele Wong
2018-01-11 11:09:23 -05:00
committed by Chuck Jazdzewski
parent 52cfe3952a
commit e79e98ab44
24 changed files with 5 additions and 5 deletions

View File

@ -0,0 +1,16 @@
// #docplaster
// #docregion customers-module
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { CustomersRoutingModule } from './customers-routing.module';
import { CustomerListComponent } from './customer-list/customer-list.component';
@NgModule({
imports: [
CommonModule,
CustomersRoutingModule
],
declarations: [CustomerListComponent]
})
export class CustomersModule { }
// #enddocregion customers-module