Skip to content

Commit 4535724

Browse files
chore: minor spelling fixes (#459)
Co-authored-by: Bjorn Neergaard <[email protected]>
1 parent 743e09c commit 4535724

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ build-backend = "poetry.core.masonry.api"
2323
```
2424

2525
Once this is present, a PEP 517 frontend like `pip` can build and install your project from source without the need
26-
for Poetry or any of it's dependencies.
26+
for Poetry or any of its dependencies.
2727

2828
```shell
2929
# install to current environment
@@ -34,12 +34,12 @@ pip wheel /path/to/poetry/managed/project
3434
```
3535

3636
## Why is this required?
37-
Prior to the release of version `1.1.0`, Poetry was a build as a project management tool that included a PEP 517
38-
build backend. This was inefficient and time consuming in majority cases a PEP 517 build was required. For example,
37+
Prior to the release of version `1.1.0`, Poetry was a project management tool that included a PEP 517
38+
build backend. This was inefficient and time consuming when a PEP 517 build was required. For example,
3939
both `pip` and `tox` (with isolated builds) would install Poetry and all dependencies it required. Most of these
4040
dependencies are not required when the objective is to simply build either a source or binary distribution of your
4141
project.
4242

4343
In order to improve the above situation, `poetry-core` was created. Shared functionality pertaining to PEP 517 build
44-
backends, including reading lock file, `pyproject.toml` and building wheel/sdist, were implemented in this package. This
44+
backends, including reading lock file, `pyproject.toml` and building wheel/sdist, were implemented in this package. This
4545
makes PEP 517 builds extremely fast for Poetry managed packages.

src/poetry/core/json/schemas/poetry-schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
},
7373
"classifiers": {
7474
"type": "array",
75-
"description": "A list of trove classifers."
75+
"description": "A list of trove classifiers."
7676
},
7777
"packages": {
7878
"type": "array",

tests/vcs/test_vcs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
"git+file://C:\\Users\\hello\\testing.git#zkat/windows-files",
8787
GitUrl("file://C:\\Users\\hello\\testing.git", "zkat/windows-files", None),
8888
),
89-
# hidden directories on Windows ues $ in their path
89+
# hidden directories on Windows use $ in their path
9090
# python-poetry/poetry#5493
9191
(
9292
"git+file://C:\\Users\\hello$\\testing.git#zkat/windows-files",

0 commit comments

Comments
 (0)