From d7316533209092a90b27ea44e73f754b6d824234 Mon Sep 17 00:00:00 2001 From: Cyrus Zei Date: Thu, 23 Jul 2020 11:16:29 +0200 Subject: [PATCH] docs: use the example.com domain (#3979) * use the example.com domain instead of gmail. I don't know if sarah.lane wants here email on your docs, but we could change that to a more doc friendly user. if you go over to example.com they even add this on their website This domain is for use in illustrative examples in documents. You may use this domain in literature without prior coordination or asking for permission. * fix typo * update email to lower case Co-authored-by: Elliot Hesp --- docs/auth/usage/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/auth/usage/index.md b/docs/auth/usage/index.md index ff815f1e..722483cc 100644 --- a/docs/auth/usage/index.md +++ b/docs/auth/usage/index.md @@ -147,7 +147,7 @@ then signing them in. import auth from '@react-native-firebase/auth'; auth() - .createUserWithEmailAndPassword('sarah.lane@gmail.com', 'SuperSecretPassword!') + .createUserWithEmailAndPassword('jane.doe@example.com', 'SuperSecretPassword!') .then(() => { console.log('User account created & signed in!'); })