diff --git a/docs/content/docs/integrations/svelte-kit.mdx b/docs/content/docs/integrations/svelte-kit.mdx index 9480ea9cbb..b1da88dd7f 100644 --- a/docs/content/docs/integrations/svelte-kit.mdx +++ b/docs/content/docs/integrations/svelte-kit.mdx @@ -30,7 +30,7 @@ npx better-auth migrate Create a client instance. You can name the file anything you want. Here we are creating `client.ts` file inside the `lib/` directory. ```ts title="client.ts" -import { createAuthClient } from "better-auth/svelte" // make sure to import from better-auth/svlete +import { createAuthClient } from "better-auth/svelte" // make sure to import from better-auth/svelte export const client = createAuthClient({ //you can pass client configuration here @@ -96,4 +96,4 @@ export async function load(request: Request) { } return session; } -``` \ No newline at end of file +```