From d1acd9b43cb33e095c4ffc78dab5630e2a67d875 Mon Sep 17 00:00:00 2001 From: Mike Hartington Date: Tue, 17 Feb 2026 08:25:44 -0500 Subject: [PATCH 1/2] fix(docs): small nits --- .../docs/orm/core-concepts/supported-databases/index.mdx | 4 ++-- apps/docs/content/docs/orm/index.mdx | 4 ++-- .../setup-and-configuration/custom-model-and-field-names.mdx | 2 +- apps/docs/content/docs/orm/prisma-migrate/index.mdx | 2 +- apps/docs/content/docs/orm/prisma-schema/overview/index.mdx | 4 ++-- apps/docs/src/app/layout.tsx | 5 ++++- 6 files changed, 12 insertions(+), 9 deletions(-) diff --git a/apps/docs/content/docs/orm/core-concepts/supported-databases/index.mdx b/apps/docs/content/docs/orm/core-concepts/supported-databases/index.mdx index e45e7c19aa..00f3e417a3 100644 --- a/apps/docs/content/docs/orm/core-concepts/supported-databases/index.mdx +++ b/apps/docs/content/docs/orm/core-concepts/supported-databases/index.mdx @@ -2,8 +2,8 @@ title: Overview description: 'Prisma ORM supports PostgreSQL, MySQL, SQLite, MongoDB, SQL Server, CockroachDB, and serverless databases' url: /docs/orm/core-concepts/supported-databases -metaTitle: Databases -metaDescription: Databases +metaTitle: Databses +metaDescription: Prisma ORM supports PostgreSQL, MySQL, SQLite, MongoDB, SQL Server, CockroachDB, and serverless databases' --- ## Database versions diff --git a/apps/docs/content/docs/orm/index.mdx b/apps/docs/content/docs/orm/index.mdx index 9a5e666090..d677a498ab 100644 --- a/apps/docs/content/docs/orm/index.mdx +++ b/apps/docs/content/docs/orm/index.mdx @@ -2,8 +2,8 @@ title: Prisma ORM description: 'Prisma ORM is a next-generation Node.js and TypeScript ORM that provides type-safe database access, migrations, and a visual data editor.' url: /docs/orm -metaTitle: ORM -metaDescription: ORM +metaTitle: What is Prisma ORM? (Overview) +metaDescription: This page gives a high-level overview of what Prisma ORM is and how it works. It's a great starting point for Prisma newcomers --- Prisma ORM is [open-source](https://github.com/prisma/prisma) and consists of: diff --git a/apps/docs/content/docs/orm/prisma-client/setup-and-configuration/custom-model-and-field-names.mdx b/apps/docs/content/docs/orm/prisma-client/setup-and-configuration/custom-model-and-field-names.mdx index 839e717916..86691c179d 100644 --- a/apps/docs/content/docs/orm/prisma-client/setup-and-configuration/custom-model-and-field-names.mdx +++ b/apps/docs/content/docs/orm/prisma-client/setup-and-configuration/custom-model-and-field-names.mdx @@ -165,7 +165,7 @@ model users { } ``` -## Using `@map` and `@@map` to rename fields and models in the Prisma Client API +## Using @map and @@map to rename fields and models in the Prisma Client API You can "rename" fields and models that are used in Prisma Client by mapping them to the "original" names in the database using the `@map` and `@@map` attributes. For the example above, you could e.g. annotate your models as follows. diff --git a/apps/docs/content/docs/orm/prisma-migrate/index.mdx b/apps/docs/content/docs/orm/prisma-migrate/index.mdx index 547d84b1f5..7eba23c69c 100644 --- a/apps/docs/content/docs/orm/prisma-migrate/index.mdx +++ b/apps/docs/content/docs/orm/prisma-migrate/index.mdx @@ -2,7 +2,7 @@ title: Overview of Prisma Migrate description: Learn everything you need to know about Prisma Migrate url: /docs/orm/prisma-migrate -metaTitle: 'Prisma Migrate | Database, Schema, SQL Migration Tool' +metaTitle: 'Prisma Migrate: Database, Schema, SQL Migration Tool' metaDescription: Prisma Migrate is a database migration tool available via the Prisma CLI that integrates with Prisma schema for data modeling. --- diff --git a/apps/docs/content/docs/orm/prisma-schema/overview/index.mdx b/apps/docs/content/docs/orm/prisma-schema/overview/index.mdx index e48c6606ba..0a720e88dd 100644 --- a/apps/docs/content/docs/orm/prisma-schema/overview/index.mdx +++ b/apps/docs/content/docs/orm/prisma-schema/overview/index.mdx @@ -117,7 +117,7 @@ Syntax highlighting for PSL is available via a [VS Code extension](https://marke PSL code snippets on GitHub can be rendered with syntax highlighting as well by using the `.prisma` file extension or annotating fenced code blocks in Markdown with `prisma`: -```` +````mdx ```prisma model User { id Int @id @default(autoincrement()) @@ -191,7 +191,7 @@ There are no configuration options - [formatting rules](#formatting-rules) are f ### Formatting rules -#### Configuration blocks are aligned by their `=` sign +#### Configuration blocks are aligned by their = sign ``` block _ { diff --git a/apps/docs/src/app/layout.tsx b/apps/docs/src/app/layout.tsx index 1813349c39..614d5bd278 100644 --- a/apps/docs/src/app/layout.tsx +++ b/apps/docs/src/app/layout.tsx @@ -19,7 +19,10 @@ const barlow = Barlow({ export const metadata: Metadata = { metadataBase: new URL(getBaseUrl()), - title: 'Prisma Documentation', + title: { + default: 'Prisma Documentation', + template: '%s | Prisma Documentation', + }, description: 'Documentation for Prisma ORM, Prisma Postgres, Prisma Accelerate, and the Prisma ecosystem. Build type-safe database applications with ease.', }; From ae3889b47de6db3208b6fbe64be1dc0e1dc9cf60 Mon Sep 17 00:00:00 2001 From: Mike Hartington Date: Tue, 17 Feb 2026 08:33:14 -0500 Subject: [PATCH 2/2] fix --- .../docs/orm/core-concepts/supported-databases/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/docs/content/docs/orm/core-concepts/supported-databases/index.mdx b/apps/docs/content/docs/orm/core-concepts/supported-databases/index.mdx index 00f3e417a3..c23ad78fb7 100644 --- a/apps/docs/content/docs/orm/core-concepts/supported-databases/index.mdx +++ b/apps/docs/content/docs/orm/core-concepts/supported-databases/index.mdx @@ -2,7 +2,7 @@ title: Overview description: 'Prisma ORM supports PostgreSQL, MySQL, SQLite, MongoDB, SQL Server, CockroachDB, and serverless databases' url: /docs/orm/core-concepts/supported-databases -metaTitle: Databses +metaTitle: Databases metaDescription: Prisma ORM supports PostgreSQL, MySQL, SQLite, MongoDB, SQL Server, CockroachDB, and serverless databases' ---