From 7bb62790a419a3cae4ce74f19d990e9ce14f7ddc Mon Sep 17 00:00:00 2001 From: Robin MacPherson Date: Sun, 1 Dec 2019 13:46:49 -0800 Subject: [PATCH] Small grammar fixes --- .../prisma-basics-datamodel-client-and-server-fgz4.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/1.34/understand-prisma/prisma-basics-datamodel-client-and-server-fgz4.mdx b/docs/1.34/understand-prisma/prisma-basics-datamodel-client-and-server-fgz4.mdx index 6be4fa3dad..3a39184e44 100644 --- a/docs/1.34/understand-prisma/prisma-basics-datamodel-client-and-server-fgz4.mdx +++ b/docs/1.34/understand-prisma/prisma-basics-datamodel-client-and-server-fgz4.mdx @@ -13,15 +13,15 @@ export const meta = { When working with Prisma, you're primarily dealing with **three concepts**: -- **Datamodel**: Defines the models of your application and is foundation for the Prisma client API. (Optional: Can be used to perform migrations against your database.) +- **Datamodel**: Defines the models of your application and is the foundation for the Prisma client API. (Optional: Can be used to perform migrations against your database.) - **Prisma server**: A standalone infrastructure component sitting on top of your database. - **Prisma client**: An auto-generated library that connects to the Prisma server and lets you read, write and stream data in your database. It is used for data access in your applications. ## Datamodel -The [datamodel](knul) primarily serves as foundation for the API operations of your Prisma client. +The [datamodel](knul) primarily serves as the foundation for the API operations of your Prisma client. -### Prisma client operations are derived from datamodel +### Prisma client operations are derived from the datamodel For each model defined in your datamodel, there are the following Prisma client operations automatically generated for you: