Skip to content

Commit

Permalink
Small grammar fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
robin-macpherson authored and nikolasburk committed Dec 18, 2019
1 parent beae12f commit 2a38a5a
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down

0 comments on commit 2a38a5a

Please sign in to comment.