From d1b3aa4e0b33f121b03027d75ae8a7e3e90c1015 Mon Sep 17 00:00:00 2001 From: Branch Vincent Date: Thu, 1 Sep 2022 22:14:40 -0400 Subject: [PATCH] chore: minor spelling fixes --- README.md | 8 ++++---- src/poetry/core/json/schemas/poetry-schema.json | 2 +- tests/vcs/test_vcs.py | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 13441a866..4b555927b 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ build-backend = "poetry.core.masonry.api" ``` Once this is present, a PEP 517 frontend like `pip` can build and install your project from source without the need -for Poetry or any of it's dependencies. +for Poetry or any of its dependencies. ```shell # install to current environment @@ -34,12 +34,12 @@ pip wheel /path/to/poetry/managed/project ``` ## Why is this required? -Prior to the release of version `1.1.0`, Poetry was a build as a project management tool that included a PEP 517 -build backend. This was inefficient and time consuming in majority cases a PEP 517 build was required. For example, +Prior to the release of version `1.1.0`, Poetry was a project management tool that included a PEP 517 +build backend. This was inefficient and time consuming when a PEP 517 build was required. For example, both `pip` and `tox` (with isolated builds) would install Poetry and all dependencies it required. Most of these dependencies are not required when the objective is to simply build either a source or binary distribution of your project. In order to improve the above situation, `poetry-core` was created. Shared functionality pertaining to PEP 517 build -backends, including reading lock file, `pyproject.toml` and building wheel/sdist, were implemented in this package. This +backends, including reading lock file, `pyproject.toml` and building wheel/sdist, were implemented in this package. This makes PEP 517 builds extremely fast for Poetry managed packages. diff --git a/src/poetry/core/json/schemas/poetry-schema.json b/src/poetry/core/json/schemas/poetry-schema.json index 888cf1ecd..ff67ccda3 100644 --- a/src/poetry/core/json/schemas/poetry-schema.json +++ b/src/poetry/core/json/schemas/poetry-schema.json @@ -71,7 +71,7 @@ }, "classifiers": { "type": "array", - "description": "A list of trove classifers." + "description": "A list of trove classifiers." }, "packages": { "type": "array", diff --git a/tests/vcs/test_vcs.py b/tests/vcs/test_vcs.py index 43f87b812..e021a73fe 100644 --- a/tests/vcs/test_vcs.py +++ b/tests/vcs/test_vcs.py @@ -86,7 +86,7 @@ "git+file://C:\\Users\\hello\\testing.git#zkat/windows-files", GitUrl("file://C:\\Users\\hello\\testing.git", "zkat/windows-files", None), ), - # hidden directories on Windows ues $ in their path + # hidden directories on Windows uses $ in their path # python-poetry/poetry#5493 ( "git+file://C:\\Users\\hello$\\testing.git#zkat/windows-files",