From c1b5cc4fe3953e366e57266f7ff63c3cc88ed4cd Mon Sep 17 00:00:00 2001 From: Bruno Fantauzzi Date: Fri, 29 Nov 2024 18:14:12 +0100 Subject: [PATCH] docs: fix typo (#687) --- docs/content/docs/concepts/database.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/docs/concepts/database.mdx b/docs/content/docs/concepts/database.mdx index 59964ec886..f0282d4de3 100644 --- a/docs/content/docs/concepts/database.mdx +++ b/docs/content/docs/concepts/database.mdx @@ -3,7 +3,7 @@ title: Database description: Learn how to use a database with Better Auth. --- -Better Auth requires a database connection to store data. It comes with a query builder called Kysley to manage and query your database. The database will be used to store data such as users, sessions, and more. Plugins can also define their own database tables to store data. +Better Auth requires a database connection to store data. It comes with a query builder called Kysely to manage and query your database. The database will be used to store data such as users, sessions, and more. Plugins can also define their own database tables to store data. You can pass a database connection to Better Auth by passing a supported database instance, a dialect instance or a Kysely instance in the database options.