diff options
author | Paul Ganssle <pganssle@users.noreply.github.com> | 2019-01-01 12:08:50 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-01 12:08:50 -0500 |
commit | 772db178f1bcea1ea892c61b026d658a32998476 (patch) | |
tree | 12e691690ff1ac261a9b4294817e70111ee65ff8 | |
parent | f5c04b1bb6c2f97305d7a92ce401194c5195197e (diff) | |
parent | 5f48a74119c6866bcbc4f142318ac392ad2cb03d (diff) | |
download | external_python_setuptools-772db178f1bcea1ea892c61b026d658a32998476.tar.gz external_python_setuptools-772db178f1bcea1ea892c61b026d658a32998476.tar.bz2 external_python_setuptools-772db178f1bcea1ea892c61b026d658a32998476.zip |
Merge pull request #1620 from scop/spelling
Spelling fixes
-rw-r--r-- | docs/developer-guide.txt | 2 | ||||
-rw-r--r-- | docs/setuptools.txt | 2 | ||||
-rw-r--r-- | setuptools/config.py | 2 | ||||
-rw-r--r-- | setuptools/pep425tags.py | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/docs/developer-guide.txt b/docs/developer-guide.txt index 39bf4717..f82df397 100644 --- a/docs/developer-guide.txt +++ b/docs/developer-guide.txt @@ -67,7 +67,7 @@ All PRs with code changes should include tests. All changes should include a changelog entry. ``setuptools`` uses `towncrier <https://pypi.org/project/towncrier/>`_ -for changelog managment, so when making a PR, please add a news fragment in the +for changelog management, so when making a PR, please add a news fragment in the ``changelog.d/`` folder. Changelog files are written in Restructured Text and should be a 1 or 2 sentence description of the substantive changes in the PR. They should be named ``<pr_number>.<category>.rst``, where the categories are: diff --git a/docs/setuptools.txt b/docs/setuptools.txt index f68edf0c..cf166e9c 100644 --- a/docs/setuptools.txt +++ b/docs/setuptools.txt @@ -2358,7 +2358,7 @@ Metadata but their use is not advised. ============================== ================= ================= =============== ===== -Key Aliases Type Minumum Version Notes +Key Aliases Type Minimum Version Notes ============================== ================= ================= =============== ===== name str version attr:, file:, str 39.2.0 (1) diff --git a/setuptools/config.py b/setuptools/config.py index 3a6da20f..59bb7708 100644 --- a/setuptools/config.py +++ b/setuptools/config.py @@ -411,7 +411,7 @@ class ConfigHandler: section_parser_method = getattr( self, - # Dots in section names are tranlsated into dunderscores. + # Dots in section names are translated into dunderscores. ('parse_section%s' % method_postfix).replace('.', '__'), None) diff --git a/setuptools/pep425tags.py b/setuptools/pep425tags.py index 8bf4277d..48745a29 100644 --- a/setuptools/pep425tags.py +++ b/setuptools/pep425tags.py @@ -161,7 +161,7 @@ def is_manylinux1_compatible(): def get_darwin_arches(major, minor, machine): """Return a list of supported arches (including group arches) for - the given major, minor and machine architecture of an macOS machine. + the given major, minor and machine architecture of a macOS machine. """ arches = [] |