From 68c11192cdbe87f8582546db27105a7bfb3ef77c Mon Sep 17 00:00:00 2001 From: Matt Netkow Date: Mon, 10 Aug 2020 09:02:32 -0500 Subject: [PATCH] update --- src/@ionic-native/plugins/firebase-crashlytics/index.ts | 2 +- src/@ionic-native/plugins/spotify-auth/index.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/@ionic-native/plugins/firebase-crashlytics/index.ts b/src/@ionic-native/plugins/firebase-crashlytics/index.ts index 278eaa2e..0faba7c9 100644 --- a/src/@ionic-native/plugins/firebase-crashlytics/index.ts +++ b/src/@ionic-native/plugins/firebase-crashlytics/index.ts @@ -16,7 +16,7 @@ import { Cordova, IonicNativePlugin, Plugin } from '@ionic-native/core'; * ... * * - * const crashlytics = this.firebaseCrashlytics.initialize(); + * const crashlytics = this.firebaseCrashlytics.initialise(); * crashlytics.logException('my caught exception'); * * ``` diff --git a/src/@ionic-native/plugins/spotify-auth/index.ts b/src/@ionic-native/plugins/spotify-auth/index.ts index f6241af5..f9f49b2d 100644 --- a/src/@ionic-native/plugins/spotify-auth/index.ts +++ b/src/@ionic-native/plugins/spotify-auth/index.ts @@ -56,7 +56,7 @@ export interface AuthorizationData { * * @usage * ```typescript - * import { SpotifyAuth } from '@ionic-native/spotify-auth'; + * import { SpotifyAuth } from '@ionic-native/spotify-auth/ngx'; * * // [...] * @@ -82,7 +82,7 @@ export interface AuthorizationData { * * // [...] * - * this.spotifyAuth.forget().then(() => console.log("We're logged out!")); + * this.spotifyAuth.forget(); * * // [...] * ```