diff --git a/demo/nextjs/app/page.tsx b/demo/nextjs/app/page.tsx
index 21e11048fa..6d43ee519c 100644
--- a/demo/nextjs/app/page.tsx
+++ b/demo/nextjs/app/page.tsx
@@ -37,7 +37,7 @@ export default async function Home() {
- All features on this demo are Implemented with better auth
+ All features on this demo are implemented with Better Auth
without any custom backend code
diff --git a/demo/nextjs/lib/email/reset-password.tsx b/demo/nextjs/lib/email/reset-password.tsx
index 8fe61b74f8..808dd95a6b 100644
--- a/demo/nextjs/lib/email/reset-password.tsx
+++ b/demo/nextjs/lib/email/reset-password.tsx
@@ -22,7 +22,7 @@ export const ResetPasswordEmail = ({
username,
resetLink,
}: BetterAuthResetPasswordEmailProps) => {
- const previewText = `Reset your BetterAuth password`;
+ const previewText = `Reset your Better Auth password`;
return (
diff --git a/docs/content/changelogs/1-2.mdx b/docs/content/changelogs/1-2.mdx
index 222b155da7..2410b1463d 100644
--- a/docs/content/changelogs/1-2.mdx
+++ b/docs/content/changelogs/1-2.mdx
@@ -101,7 +101,7 @@ Read the [Organization Plugin docs](/docs/plugins/organization#teams) for more i
### **Init CLI**
-The CLI now includes an `init` command to add better auth to your project.
+The CLI now includes an `init` command to add Better Auth to your project.
```bash title="terminal"
npx @better-auth/cli init
diff --git a/docs/content/docs/concepts/api.mdx b/docs/content/docs/concepts/api.mdx
index 4991e63935..0dca57892e 100644
--- a/docs/content/docs/concepts/api.mdx
+++ b/docs/content/docs/concepts/api.mdx
@@ -3,7 +3,7 @@ title: API
description: Better Auth API.
---
-When you create a new Better Auth instance, it provides you with an `api` object. This object exposes every endpoint that exist in your better auth instance. And you can use this to interact with Better Auth server side.
+When you create a new Better Auth instance, it provides you with an `api` object. This object exposes every endpoint that exist in your Better Auth instance. And you can use this to interact with Better Auth server side.
Any endpoint added to Better Auth, whether from plugins or the core, will be accessible through the `api` object.
diff --git a/docs/content/docs/concepts/hooks.mdx b/docs/content/docs/concepts/hooks.mdx
index c51c406751..3ac632dcfa 100644
--- a/docs/content/docs/concepts/hooks.mdx
+++ b/docs/content/docs/concepts/hooks.mdx
@@ -6,7 +6,7 @@ description: Better Auth Hooks let you customize BetterAuth's behavior
Hooks in Better Auth let you "hook into" the lifecycle and execute custom logic. They provide a way to customize Better Auth's behavior without writing a full plugin.