diff --git a/docs/README.md b/docs/README.md index a0cab907..cc7249ae 100644 --- a/docs/README.md +++ b/docs/README.md @@ -28,6 +28,7 @@ The native SDKs also allow us to hook into device sdk's which are not possible w --- ## Supported Firebase Features +> The Web SDK column indicates what modules from the Firebase Web SDK are usable within React Native. | Firebase Features | v1 | [v2](https://github.com/invertase/react-native-firebase/pull/130) | Web SDK | | ---------------------- | :---: | :---: | :---: | diff --git a/docs/modules/analytics.md b/docs/modules/analytics.md index 68c65a50..00a13456 100644 --- a/docs/modules/analytics.md +++ b/docs/modules/analytics.md @@ -73,7 +73,7 @@ firebase.analytics().setSessionTimeoutDuration(900000); #### `setUserId(id: string): void` -Gives a user a uniqiue identificaition. +Gives a user a unique identification. ```javascript const id = firebase.auth().currentUser.uid; diff --git a/docs/modules/authentication.md b/docs/modules/authentication.md index 83dd686c..9b535fdd 100644 --- a/docs/modules/authentication.md +++ b/docs/modules/authentication.md @@ -279,7 +279,7 @@ Updates a user's profile data. Profile data should be an object of fields to upd ```javascript firebase.auth().currentUser .updateProfile({ - displayName: 'Ari Lerner' + displayName: 'Display Name' }) .then() .catch();