diff --git a/src/@ionic-native/plugins/zbar/index.ts b/src/@ionic-native/plugins/zbar/index.ts index 90f9761f1..3fb463c8d 100644 --- a/src/@ionic-native/plugins/zbar/index.ts +++ b/src/@ionic-native/plugins/zbar/index.ts @@ -44,18 +44,18 @@ export interface ZBarOptions { * * @usage * ```typescript - * import { ZBar, ZBarOptions } from '@ionic-native/z-bar'; + * import { ZBar, ZBarOptions } from '@ionic-native/zbar'; * * constructor(private zbar: ZBar) { } * * ... * - * let ZBarOptions = { + * let options: ZBarOptions = { * flash: 'off', * drawSight: false * }; * - * this.zbar.scan(zBarOptions) + * this.zbar.scan(options) * .then(result => { * console.log(result); // Scanned code * })