Skip to content

Commit

Permalink
typos and grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
janpio committed Jul 24, 2019
1 parent 34b2eac commit f0100ba
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/prisma-schema-file.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The Prisma schema file (short: _schema file_, _Prisma schema_ or just _schema_)

Whenever a `prisma2` command is invoked, the CLI typically reads some information from the schema file, e.g.:

- `prisma2 generate`: Reads _all_ above mentioned information from the datamodel to generated the right data source client code (e.g. Photon JS).
- `prisma2 generate`: Reads _all_ above mentioned information from the datamodel to generate the correct data source client code (e.g. Photon JS).
- `prisma2 lift save`: Reads the data sources and data model definition to create a new [migration]().

You can also [use environment variables](#using-environment-variables) inside the schema file to provide configuration options when a CLI command is invoked.
Expand Down Expand Up @@ -183,7 +183,7 @@ There are several blocks you can use for _data modeling_ in your schema file:

There also are _attributes_ and _functions_ you can use to enhance the functionality of your data model definition.

Learn about the data modeling components in detail [here](./data-modeling.md)
Learn about the data modeling components in detail [here](./data-modeling.md).

## Using environment variables

Expand Down Expand Up @@ -271,7 +271,7 @@ This strictness serves two benefits:

### Formatting Rules

#### Configuration blocks are align by their `=` sign
#### Configuration blocks are aligned by their `=` sign

```groovy
block _ {
Expand All @@ -281,7 +281,7 @@ block _ {
}
```

Formatting may be reset up by a newline:
Formatting may be reset by a newline:

```groovy
block _ {
Expand Down

0 comments on commit f0100ba

Please sign in to comment.