This commit is contained in:
Matt Netkow
2020-08-10 09:02:32 -05:00
parent 5ec63841c3
commit 68c11192cd
2 changed files with 3 additions and 3 deletions
@@ -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');
*
* ```
@@ -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();
*
* // [...]
* ```