From 89853e9c2c734078c7a1aab92a52f07b7015b9fb Mon Sep 17 00:00:00 2001 From: Tom Aisthorpe Date: Mon, 29 Dec 2025 19:29:52 +0000 Subject: [PATCH] docs: typo in prisma client introduction --- .../000-setup-and-configuration/005-introduction.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/200-orm/200-prisma-client/000-setup-and-configuration/005-introduction.mdx b/content/200-orm/200-prisma-client/000-setup-and-configuration/005-introduction.mdx index 972efafea5..653750d1b3 100644 --- a/content/200-orm/200-prisma-client/000-setup-and-configuration/005-introduction.mdx +++ b/content/200-orm/200-prisma-client/000-setup-and-configuration/005-introduction.mdx @@ -135,7 +135,7 @@ const prisma = new PrismaClient() -> **Note**: If you're using [driver adapters](/orm/overview/databases/database-drivers#driver-adapters), you can import from the location spefified in your generator's `output` path directly, e.g. `./src/generated/prisma`. No need to import from `./src/generated/prisma/edge`. +> **Note**: If you're using [driver adapters](/orm/overview/databases/database-drivers#driver-adapters), you can import from the location specified in your generator's `output` path directly, e.g. `./src/generated/prisma`. No need to import from `./src/generated/prisma/edge`. ### 4. Use Prisma Client to send queries to your database