From 088e753ff022125096c524a112e69da2e0eeda4a Mon Sep 17 00:00:00 2001 From: Salih Candir Date: Tue, 23 Dec 2025 11:44:19 +0100 Subject: [PATCH] docs: update file naming example in Next.js integration guide (#6948) --- docs/content/docs/integrations/next.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/docs/integrations/next.mdx b/docs/content/docs/integrations/next.mdx index bd16d10eff..d0582b84a1 100644 --- a/docs/content/docs/integrations/next.mdx +++ b/docs/content/docs/integrations/next.mdx @@ -35,7 +35,7 @@ export default toNodeHandler(auth.handler) ## Create a client -Create a client instance. You can name the file anything you want. Here we are creating `client.ts` file inside the `lib/` directory. +Create a client instance. You can name the file anything you want. Here we are creating `auth-client.ts` file inside the `lib/` directory. ```ts title="auth-client.ts" import { createAuthClient } from "better-auth/react" // make sure to import from better-auth/react