Skip to content
This repository was archived by the owner on Mar 17, 2025. It is now read-only.

Commit 6421443

Browse files
author
jwngr
committed
Fixed some wording in the 2.x.x migration guide
1 parent ab19070 commit 6421443

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/migration/1XX-to-2XX.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ Several authentication methods have been renamed and / or have different method
3333
| `$authWithOAuthPopup(provider[, options])` | `$signInWithPopup(provider)` | `options` can be provided by passing a configured `firebase.database.AuthProvider` instead of a `provider` string |
3434
| `$authWithOAuthRedirect(provider[, options])` | `$signInWithRedirect(provider)` | `options` can be provided by passing a configured `firebase.database.AuthProvider` instead of a `provider` string |
3535
| `$createUser(credentials)` | `$createUserWithEmailAndPassword(email, password)` | |
36-
| `$removeUser(credentials)` | `$deleteUser()` | Deletes the currently logged in user |
37-
| `$changeEmail(credentials)` | `$updateEmail(newEmail)` | Changes the email of the currently logged in user |
38-
| `$changePassword(credentials)` | `$updatePassword(newPassword)` | Changes the password of the currently logged in user |
36+
| `$removeUser(credentials)` | `$deleteUser()` | Deletes the currently signed in user |
37+
| `$changeEmail(credentials)` | `$updateEmail(newEmail)` | Changes the email of the currently signed in user |
38+
| `$changePassword(credentials)` | `$updatePassword(newPassword)` | Changes the password of the currently signed in user |
3939
| `$resetPassword(credentials)` | `$sendPasswordResetEmail(email)` | |
4040
| `$unauth()` | `$signOut()` | |
4141
| `$onAuth(callback)` | `$onAuthStateChanged(callback)` |   |
@@ -45,4 +45,4 @@ Several authentication methods have been renamed and / or have different method
4545

4646
Although all your promises and `$getAuth()` calls will continue to function, the auth payload will
4747
differ slightly. Ensure that your code is expecting the new payload that is documented in the
48-
[Firebase Authentication for Web documentation](https://firebase.google.com/docs/auth/).
48+
[Firebase Authentication guide](https://firebase.google.com/docs/auth/).

0 commit comments

Comments
 (0)