diff --git a/docs/content/docs/authentication/email-password.mdx b/docs/content/docs/authentication/email-password.mdx index 64a99aec3f..08ba088cf4 100644 --- a/docs/content/docs/authentication/email-password.mdx +++ b/docs/content/docs/authentication/email-password.mdx @@ -78,7 +78,7 @@ await client.signOut() ### Email Verification -To enable email verification, you need to provider `sendVerificationEmail` function to the email and password authenticator. The `sendVerificationEmail` function takes an object with the following properties: +To enable email verification, you need to provide `sendVerificationEmail` function to the email and password authenticator. The `sendVerificationEmail` function takes an object with the following properties: - `user`: The user object. - `url`: The url to send to the user which contains the token. @@ -103,7 +103,7 @@ Once the user clicks on the link in the email, if the token is valid, the user w ### Forget Password -to allow users to reset a password first you need to provider `sendResetPassword` function to the email and password authenticator. The `sendResetPassword` function takes an object with the following properties: +to allow users to reset a password first you need to provide `sendResetPassword` function to the email and password authenticator. The `sendResetPassword` function takes an object with the following properties: - `user`: The user object. - `url`: The url to send to the user which contains the token.