From 2ae54e54f6c940fe2b58c45e2f77609dd9eb5bcb Mon Sep 17 00:00:00 2001 From: Neville Brem Date: Tue, 1 Oct 2024 20:14:58 +0200 Subject: [PATCH] docs: typo fix (#59) --- docs/content/docs/integrations/svelte-kit.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +```