Minor docs fixes

This commit is contained in:
Hynek Schlawack 2022-08-19 09:03:00 +02:00
parent 6efae77bde
commit 307a6467d3
No known key found for this signature in database
GPG Key ID: AE2536227F69F181
2 changed files with 3 additions and 3 deletions

View File

@ -52,7 +52,7 @@ Next, get an up-to-date checkout of the `attrs` repository:
$ git clone git@github.com:python-attrs/attrs.git $ git clone git@github.com:python-attrs/attrs.git
``` ```
or if you prefer to use git via `https`: or if you prefer to use *Git* via `https`:
```console ```console
$ git clone https://github.com/python-attrs/attrs.git $ git clone https://github.com/python-attrs/attrs.git
@ -62,7 +62,7 @@ Change into the newly created directory and **after activating your virtual envi
```console ```console
$ cd attrs $ cd attrs
$ python -m pip install --upgrade pip setuptools # PLEASE don't skip this step $ python -m pip install --upgrade pip wheel setuptools # PLEASE don't skip this step
$ python -m pip install -e '.[dev]' $ python -m pip install -e '.[dev]'
``` ```