From 39a890d5839f65fd067f62e440cfd80f75579bfb Mon Sep 17 00:00:00 2001 From: ensi <66754841+ncor@users.noreply.github.com> Date: Fri, 18 Oct 2024 13:54:36 +0300 Subject: [PATCH] docs: fix typo (#225) --- docs/content/docs/authentication/email-password.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.