From b64c4e98de4d1783e03ce7f0a4fcba18af494dc2 Mon Sep 17 00:00:00 2001 From: Arian Joyandeh <45354444+kanarian@users.noreply.github.com> Date: Thu, 13 Nov 2025 17:11:17 +0100 Subject: [PATCH] Fix typo "Crate" -> "Create" see title --- docs/content/docs/concepts/plugins.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/docs/concepts/plugins.mdx b/docs/content/docs/concepts/plugins.mdx index d260d647dc..ef4ef38d51 100644 --- a/docs/content/docs/concepts/plugins.mdx +++ b/docs/content/docs/concepts/plugins.mdx @@ -224,7 +224,7 @@ const myPlugin = ()=>{ This will add an `age` field to the `user` table and all `user` returning endpoints will include the `age` field and it'll be inferred properly by typescript. -Don't store sensitive information in `user` or `session` table. Crate a new table if you need to store sensitive information. +Don't store sensitive information in `user` or `session` table. Create a new table if you need to store sensitive information. ### Hooks @@ -534,4 +534,4 @@ If you need to use better fetch plugins you can pass them to the `fetchPlugins` This is only useful if you want to provide `hooks` like `useSession` and you want to listen to atoms and re-evaluate them when they change. -You can see how this is used in the built-in plugins. \ No newline at end of file +You can see how this is used in the built-in plugins.