Update understanding-firebase-auth.md

This commit is contained in:
Elliot Hesp 2018-04-05 09:41:56 +01:00 committed by GitHub
parent ec0dbb267f
commit b0de51d724
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ firebase.auth().createUserAndRetrieveDataWithEmailAndPassword('jim.bob@gmail.com
console.log('New User', user);
})
.catch((error) => {
console.error('Woops, something went wrong!, error);
console.error('Woops, something went wrong!', error);
});
```