Skip to content
This repository was archived by the owner on Apr 4, 2023. It is now read-only.

Commit 578af65

Browse files
Merge pull request #13 from mikeres0/master
Updated README.md
2 parents 6258122 + e922c6a commit 578af65

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ You can expect more login mechanisms to be added in the future.
187187
```js
188188
firebase.login({
189189
// note that you need to enable anonymous login in your firebase instance
190-
type: firebase.loginType.ANONYMOUS
190+
type: firebase.LoginType.ANONYMOUS
191191
}).then(
192192
function (result) {
193193
// the result object has these properties: uid, provider, expiresAtUnixEpochSeconds, profileImageURL, token
@@ -203,7 +203,7 @@ You can expect more login mechanisms to be added in the future.
203203
```js
204204
firebase.login({
205205
// note that you need to enable email-password login in your firebase instance
206-
type: firebase.loginType.PASSWORD,
206+
type: firebase.LoginType.PASSWORD,
207207
208208
password: 'theirpassword'
209209
}).then(

0 commit comments

Comments
 (0)