docs: typo fix (#59)

This commit is contained in:
Neville Brem
2024-10-01 20:14:58 +02:00
committed by GitHub
parent 51b142240e
commit 2ae54e54f6

View File

@@ -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;
}
```
```