Fix updateEmail method

This commit is contained in:
Sat Mandir S. Khalsa 2017-03-21 15:30:34 -07:00 committed by GitHub
parent a5f9e278d7
commit 657b9e4e91
1 changed files with 1 additions and 1 deletions

View File

@ -249,7 +249,7 @@ Updates the user's email address. See Firebase docs for more information on secu
```javascript ```javascript
firebase.auth().currentUser firebase.auth().currentUser
.updateUserEmail('foo@bar.com') .updateEmail('foo@bar.com')
.then() .then()
.catch(); .catch();
``` ```