From 8464edc89f80cc789aeb708c872e964e6dbe9c4d Mon Sep 17 00:00:00 2001 From: Frank <32797520+Frank1016@users.noreply.github.com> Date: Mon, 5 Feb 2024 09:54:56 -0500 Subject: [PATCH] docs: Updates typo on CRUD page. typo correction --- docs/05-concepts/06-database/05-crud.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/05-concepts/06-database/05-crud.md b/docs/05-concepts/06-database/05-crud.md index 38312bb4..c6f93b1c 100644 --- a/docs/05-concepts/06-database/05-crud.md +++ b/docs/05-concepts/06-database/05-crud.md @@ -13,7 +13,7 @@ fields: :::note -You can also access the database methods through the session object under the field `dbNext`. However, this is typically only recommended if you want to want to do custom queries where you explicitly type out your SQL queries. The `db` field on `Session` contains legacy methods that are included for compatibility. In version 2 of Serverpod, the old legacy methods will be removed and `db` will be replaced by `dbNext`. +You can also access the database methods through the session object under the field `dbNext`. However, this is typically only recommended if you want to do custom queries where you explicitly type out your SQL queries. The `db` field on `Session` contains legacy methods that are included for compatibility. In version 2 of Serverpod, the old legacy methods will be removed and `db` will be replaced by `dbNext`. :::