diff --git a/src/components/datetime/datetime.ts b/src/components/datetime/datetime.ts index 956cbfa6e0..b7b061b1db 100644 --- a/src/components/datetime/datetime.ts +++ b/src/components/datetime/datetime.ts @@ -196,14 +196,19 @@ export const DATETIME_VALUE_ACCESSOR: any = { * ### App Config Level * * ```ts - * import { ionicBootstrap } from 'ionic-angular'; - * - * ionicBootstrap(MyApp, customProviders, { + * //app.module.ts + * @NgModule({ + * ..., + * imports: [ + * IonicModule.forRoot(MyApp, { * monthNames: ['janeiro', 'fevereiro', 'mar\u00e7o', ... ], * monthShortNames: ['jan', 'fev', 'mar', ... ], * dayNames: ['domingo', 'segunda-feira', 'ter\u00e7a-feira', ... ], * dayShortNames: ['dom', 'seg', 'ter', ... ], - * }); + * }) + * ], + * ... + * }) * ``` * * ### Component Input Level