Skip to content

Commit ac29d07

Browse files
DimitriPapadopouloswebknjaz
authored andcommitted
Fix typos found by codespell
1 parent 71e07ca commit ac29d07

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

source/contribute.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ document <discussions/install-requires-vs-requirements>`.
6363
Specifications
6464
--------------
6565

66-
Specifications are reference documention focused on comprehensively documenting
66+
Specifications are reference documentation focused on comprehensively documenting
6767
an agreed-upon interface for interoperability between packaging tools.
6868
:doc:`example specification-style document <specifications/core-metadata>`.
6969

source/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ use ``build`` package.
103103
You can use any other method for building distributions as long as
104104
it produces ready-to-upload artifacts saved into the
105105
``dist/`` folder. You can even use ``actions/upload-artifact`` and
106-
``actions/download-artifact`` to tranfer files between jobs or make them
107-
accessable for download from the web CI interface.
106+
``actions/download-artifact`` to transfer files between jobs or make them
107+
accessible for download from the web CI interface.
108108

109109
So add this to the steps list:
110110

source/key_projects.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ check for CVEs in `Pipfile` using `safety <https://pyup.io/safety>`_.
184184

185185
Pipenv aims to help users manage environments, dependencies, and
186186
imported packages on the command line. It also works well on Windows
187-
(which other tools often underserve), makes and checkes file hashes,
187+
(which other tools often underserve), makes and checks file hashes,
188188
to ensure compliance with hash-locked dependency specifiers, and eases
189189
uninstallation of packages and dependencies.
190190

source/news.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ March 2018
118118
- Updated "installing scientific packages". (:pr:`455`)
119119
- Added :file:`long_description_content_type` to follow PEP 556. (:pr:`457`)
120120
- Clarified a long description classifier on pypi.org. (:pr:`456`)
121-
- Updated Core Metadata spec to follw PEP 556. (:pr:`412`)
121+
- Updated Core Metadata spec to follow PEP 556. (:pr:`412`)
122122

123123
February 2018
124124
-------------
@@ -214,7 +214,7 @@ April 2017
214214
- Added documentation explaining prominently how to install ``pip`` in ``/usr/local``. (:pr:`230`)
215215
- Updated development mode documentation to mention that order of local packages matters. (:pr:`208`)
216216
- Convert readthedocs link for their ``.org`` -> ``.io`` migration for hosted projects (:pr:`239`)
217-
- Swaped order of :file:`setup.py` arguments for the upload command, as order
217+
- Swapped order of :file:`setup.py` arguments for the upload command, as order
218218
is significant. (:pr:`260`)
219219
- Explained how to install from unsupported sources using a helper application. (:pr:`289`)
220220

source/specifications/recording-installed-packages.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,14 @@ encouraged to start normalizing those fields.
5959

6060
.. note::
6161

62-
The ``.dist-info`` directory's name is formatted to unambigiously represent
62+
The ``.dist-info`` directory's name is formatted to unambiguously represent
6363
a distribution as a filesystem path. Tools presenting a distribution name
6464
to a user should avoid using the normalized name, and instead present the
6565
specified name (when needed prior to resolution to an installed package),
6666
or read the respective fields in Core Metadata, since values listed there
6767
are unescaped and accurately reflect the distribution. Libraries should
6868
provide API for such tools to consume, so tools can have access to the
69-
unnormalized name when displaying distrubution information.
69+
unnormalized name when displaying distribution information.
7070

7171
This ``.dist-info`` directory may contain the following files, described in
7272
detail below:
@@ -234,7 +234,7 @@ packages into a Python environment to ensure that other tools are not used to
234234
uninstall or otherwise modify that installed package, as doing so may cause
235235
compatibility problems with the wider environment.
236236

237-
To achieve this, affected tools should take the folllowing steps:
237+
To achieve this, affected tools should take the following steps:
238238

239239
* Rename or remove the ``RECORD`` file to prevent changes via other tools (e.g.
240240
appending a suffix to create a non-standard ``RECORD.tool`` file if the tool
@@ -251,4 +251,4 @@ ensuring both locations appear on the default Python import path).
251251

252252
In some circumstances, it may be desirable to block even installation of
253253
additional packages via Python-specific tools. For these cases refer to
254-
:ref:`externally-managed-environments`
254+
:ref:`externally-managed-environments`

source/specifications/virtual-environments.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Runtime detection of virtual environments
1919

2020
At runtime, virtual environments can be identified by virtue of ``sys.prefix``
2121
(the filesystem location of the running interpreter) having a different value
22-
from ``sys.base_prefix`` (the default filesytem location of the standard library
22+
from ``sys.base_prefix`` (the default filesystem location of the standard library
2323
directories).
2424

2525
:ref:`venv-explanation` in the Python standard library documentation for the

0 commit comments

Comments
 (0)