Skip to content

Commit e08be9c

Browse files
committed
Spelling fixes
1 parent 3a3d923 commit e08be9c

8 files changed

Lines changed: 8 additions & 8 deletions

source/guides/installing-using-linux-tools.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ To install pip, wheel, and setuptools, in a parallel, non-system environment
9898
(using yum) then there are two options:
9999

100100

101-
1. Use the "Sofware Collections" feature to enable a parallel collection that
101+
1. Use the "Software Collections" feature to enable a parallel collection that
102102
includes pip, setuptools, and wheel.
103103

104104
* For Redhat, see here:

source/guides/installing-using-pip-and-virtual-environments.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ for Python 2. These are the lowest-level tools for managing Python
77
packages and are recommended if higher-level tools do not suit your needs.
88

99
.. note:: This doc uses the term **package** to refer to a
10-
:term:`Distribution Package` which is different from a :term:`Import
10+
:term:`Distribution Package` which is different from an :term:`Import
1111
Package` that which is used to import modules in your Python source code.
1212

1313

source/guides/multi-version-installs.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ This can be worked around by setting all dependencies in
3232
``__main__.__requires__`` before importing ``pkg_resources`` for the first
3333
time, but that approach does mean that standard command line invocations of
3434
the affected tools can't be used - it's necessary to write a custom
35-
wrapper script or use ``python -c '<commmand>'`` to invoke the application's
35+
wrapper script or use ``python -c '<command>'`` to invoke the application's
3636
main entry point directly.
3737

3838
Refer to the `pkg_resources documentation

source/guides/packaging-binary-extensions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ profiling has identified the code where the speed increase is worth
112112
additional maintenance effort), a number of other alternatives should
113113
also be considered:
114114

115-
* look for existing optimised alternatives. The CPython standard libary
115+
* look for existing optimised alternatives. The CPython standard library
116116
includes a number of optimised data structures and algorithms (especially
117117
in the builtins and the ``collections`` and ``itertools`` modules). The
118118
Python Package Index also offers additional alternatives. Sometimes, the

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Let's begin! 🚀
3838
tab of your target repository and then click on `Secrets`_
3939
in the left sidebar.
4040
3. Create a new secret called ``PYPI_API_TOKEN`` and copy-paste
41-
the token from the fist step.
41+
the token from the first step.
4242
4. Now, go to https://test.pypi.org/manage/account/#api-tokens
4343
and repeat the steps. Save that TestPyPI token on GitHub
4444
as ``TEST_PYPI_API_TOKEN``.

source/overview.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ virtualenv
416416

417417
`Virtualenvs
418418
<http://python-guide.readthedocs.io/en/latest/dev/virtualenvs/>`_ have
419-
been an indispensible tool for multiple generations of Python
419+
been an indispensable tool for multiple generations of Python
420420
developer, but are slowly fading from view, as they are being wrapped
421421
by higher-level tools. With packaging in particular, virtualenvs are
422422
used as a primitive in `the dh-virtualenv tool

source/specifications/declaring-project-metadata.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The fields defined in this specification MUST be in a table named
2020
table which are not defined by this specification. For tools wishing
2121
to store their own settings in ``pyproject.toml``, they may use the
2222
``[tool]`` table as defined in the
23-
:ref:`build dependency decleration specification <declaring-build-dependencies>`.
23+
:ref:`build dependency declaration specification <declaring-build-dependencies>`.
2424
The lack of a ``[project]`` table implicitly means the build back-end
2525
will dynamically provide all fields.
2626

source/specifications/recording-installed-packages.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ History and change workflow
2121
===========================
2222

2323
The metadata described here was first specified in :pep:`376`, and later
24-
ammended in :pep:`627`.
24+
amended in :pep:`627`.
2525
It was formerly known as *Database of Installed Python Distributions*.
2626
Further amendments (except trivial language or typography fixes) must be made
2727
through the PEP process (see :pep:`1`).

0 commit comments

Comments
 (0)