From 187ca360f433759d5b8584100dfb85c384e69d12 Mon Sep 17 00:00:00 2001 From: Mikiyas Tibebu Date: Fri, 21 Mar 2025 09:00:48 +0300 Subject: [PATCH] docs(fix): correct typos in phone number plugin documentation (#1910) --- docs/content/docs/plugins/phone-number.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/docs/plugins/phone-number.mdx b/docs/content/docs/plugins/phone-number.mdx index 479041e074..0d2ca50f06 100644 --- a/docs/content/docs/plugins/phone-number.mdx +++ b/docs/content/docs/plugins/phone-number.mdx @@ -88,7 +88,7 @@ When the phone number is verified, the `phoneNumberVerified` field in the user t ### Allow Sign-Up with Phone Number -to allow users to sign up using their phone number, you can pass `signUpOnVerification` option to your plugin configuration. It requires you to pass `getTempEmail` function to generate a temporary email for the user. +To allow users to sign up using their phone number, you can pass `signUpOnVerification` option to your plugin configuration. It requires you to pass `getTempEmail` function to generate a temporary email for the user. ```ts title="auth.ts" export const auth = betterAuth({ @@ -144,7 +144,7 @@ const isVerified = await authClient.phoneNumber.verify({ }) ``` -if user session exist the phone number will be updated automatically +If a user session exist the phone number will be updated automatically. ### Disable Session Creation