Skip to content
This repository was archived by the owner on Apr 15, 2025. It is now read-only.

Commit feaef23

Browse files
authored
docs: fix a broken link and typos (#855)
## Change Summary Please summarise the changes this pull request is making here. ## Checklist - [ ] Unit tests for the changes exist - [ ] Tests pass without significant drop in coverage - [ ] Documentation reflects changes where applicable - [ ] Test snapshots have been [updated](https://prisma-client-py.readthedocs.io/en/latest/contributing/contributing/#snapshot-tests) if applicable ## Agreement By submitting this pull request, I confirm that you can use, modify, copy and redistribute this contribution, under the terms of your choice.
1 parent 21b58f6 commit feaef23

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

docs/getting_started/quickstart.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Quickstart
22

33
!!! note
4-
Adapted from the Prisma Client Go [documentation](https://github.com/prisma/prisma-client-go/blob/master/docs/quickstart.md)
4+
Adapted from the [Prisma Client Go documentation](https://goprisma.org/docs/getting-started/quickstart)
55

66
In this page, you will learn how to send queries to an SQLite database using Prisma Client Python and
77
run static type checks.
88

99
## Setup
1010

11-
1) Setup a Python project with a [virtual environment](https://docs.python.org/3/library/venv.html)
11+
1) Set up a Python project with a [virtual environment](https://docs.python.org/3/library/venv.html)
1212

1313
```sh
1414
mkdir demo && cd demo
@@ -57,15 +57,15 @@ prisma db push
5757
If you make changes to your prisma schema, you need to run this command again.
5858

5959
!!! note
60-
The `db push` command also generates the client for you, if you want to generate the client without
61-
modifying your database, use the following command
60+
The `db push` command also generates the client for you. If you want to generate the client without
61+
modifying your database, use the following command:
6262

6363
```sh
6464
prisma generate
6565
```
6666

6767
!!! hint
68-
you can add the `--watch` flag to re-generate the client whenever you modify the `schema.prisma` file
68+
You can add the `--watch` flag to re-generate the client whenever you modify the `schema.prisma` file:
6969
```sh
7070
prisma generate --watch
7171
```
@@ -108,7 +108,7 @@ found post: {
108108
### Setup
109109

110110
!!! note
111-
I am the maintainer of the [pyright PyPI package](https://pypi.org/project/pyright/) which is a wrapper over the [official version](https://github.com/microsoft/pyright) which is maintained by microsoft
111+
I am the maintainer of the [pyright PyPI package](https://pypi.org/project/pyright/) which is a wrapper over the [official version](https://github.com/microsoft/pyright) which is maintained by Microsoft.
112112

113113
1) Install pyright
114114

@@ -140,7 +140,7 @@ Completed in 1.322sec
140140

141141
### Error reporting
142142

143-
For example, add the following line to the end of the main() function
143+
For example, add the following line to the end of the `main()` function
144144

145145
```py
146146
async def main() -> None:

0 commit comments

Comments
 (0)