Skip to content

Commit 2802010

Browse files
CONTRIBUTING.md: Fix typos and spelling errors
Signed-off-by: Bernhard Kaindl <[email protected]>
1 parent 7c67c2c commit 2802010

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

CONTRIBUTING.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ pipx inject pytest pytest-{forked,localftpserver,pythonpath,subprocess,timeout}
3131
pipx inject pylint pyfakefs six mock pytest{,_forked,-localftpserver}
3232
```
3333

34-
Use the `deadsnakes` ppa to install Python versions like 3.8 and 3.11 (see below)
34+
Use the `deadsnakes` PPA to install Python versions like 3.8 and 3.11 (see below)
3535

3636
## Development setup on Ubuntu 22.04
3737

@@ -105,15 +105,14 @@ Explanation:
105105

106106
## Installation of all development dependencies
107107

108-
Using pip-tools, you can extract the requirements and extras from `pyptoject.toml`:
108+
Using pip-tools, you can extract the requirements and extras from `pyproject.toml`:
109109

110110
```bash
111111
PYTHON=python3.10
112112
EXTRAS=.,test,mypy,pyright,pytype,tox
113-
PFLAGS="--no-warn-conflicts"
114113
$PYTHON -m pip install pip-tools==7.3.0
115-
$PYTHON -m piptools compile --extra=$EXTRAS -o - pyproject.toml |
116-
$PYTHON -m pip install -r /dev/stdin $PFLAGS
114+
$PYTHON -m pip-compile --extra=$EXTRAS -o - pyproject.toml |
115+
$PYTHON -m pip install -r /dev/stdin --no-warn-conflicts"
117116
```
118117
119118
With this, you can run most of the CI tests run by `tox` and GitHub CI also from the shell.
@@ -192,7 +191,7 @@ To run `podman` as your user, run these as your user:
192191
```bash
193192
systemctl enable --now --user podman.socket # Only configures the podman socket
194193
systemctl start --user podman.socket # Start the docker-compatible unix socket
195-
# Ubuntu only, Fedora 37 configures it already with more unqualifies search registries:
194+
# Ubuntu only, Fedora 37 configures it already with more unqualified search registries:
196195
echo 'unqualified-search-registries = ["docker.io"]' | sudo tee -a /etc/containers/registries.conf
197196
sudo touch /etc/containers/nodocker # Quiet the docker emulation notification
198197
echo "--container-daemon-socket unix://$XDG_RUNTIME_DIR/podman/podman.sock" >>~/.actrc
@@ -215,7 +214,7 @@ Switch to `iptables-legacy` so that Docker will work:
215214
### Copy selection on selecting test (without need for Ctrl-C)
216215
217216
On traditional X11 and KDE Plasma, selected text is automatically copied
218-
to the X selection/clipboard for pasting it. To use this engrained behavior
217+
to the X selection/clipboard for pasting it. To use this engrained behaviour
219218
on Windows as well, it seems the only reliable way to have it for all apps
220219
is a `AutoHotKey` script:
221220

0 commit comments

Comments
 (0)