From 0c8b39daa710865ca13fbec1961bc4d832b559cc Mon Sep 17 00:00:00 2001 From: Steve Piercy Date: Tue, 5 May 2026 00:36:21 -0700 Subject: [PATCH] Remove duplicate "adapter" from docs --- .../docs/(index)/prisma-orm/quickstart/prisma-postgres.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/docs/content/docs/(index)/prisma-orm/quickstart/prisma-postgres.mdx b/apps/docs/content/docs/(index)/prisma-orm/quickstart/prisma-postgres.mdx index c8a7ead748..39cca47e81 100644 --- a/apps/docs/content/docs/(index)/prisma-orm/quickstart/prisma-postgres.mdx +++ b/apps/docs/content/docs/(index)/prisma-orm/quickstart/prisma-postgres.mdx @@ -175,7 +175,7 @@ npx prisma generate ## 7. Instantiate Prisma Client -Now that you have all the dependencies installed, you can instantiate Prisma Client. You need to pass an instance of the Prisma ORM driver adapter adapter to the `PrismaClient` constructor: +Now that you have all the dependencies installed, you can instantiate Prisma Client. You need to pass an instance of the Prisma ORM driver adapter to the `PrismaClient` constructor: ```typescript title="lib/prisma.ts" import "dotenv/config";