diff --git a/src/@ionic-native/plugins/app-preferences/index.ts b/src/@ionic-native/plugins/app-preferences/index.ts index 95019a69e..d6c26892a 100644 --- a/src/@ionic-native/plugins/app-preferences/index.ts +++ b/src/@ionic-native/plugins/app-preferences/index.ts @@ -11,11 +11,12 @@ import { Injectable } from '@angular/core'; * ```typescript * import { AppPreferences } from '@ionic-native/app-preferences'; * - * constructor(private appPreferences: AppPreferences) { + * constructor(private appPreferences: AppPreferences) { } * - * this.appPreferences.fetch('key').then((res) => { console.log(res); }); + * ... + * + * this.appPreferences.fetch('key').then((res) => { console.log(res); }); * - * } * ``` * */