docs(spotify): Spotify Auth & Firebase Crashlytics

This commit is contained in:
Matt Netkow 2020-08-10 09:10:32 -05:00 committed by GitHub
commit f413dab4e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -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');
*
* ```

View File

@ -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();
*
* // [...]
* ```