summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2021-09-04 15:56:57 -0400
committerGitHub <noreply@github.com>2021-09-04 15:56:57 -0400
commit3f2a0370ff7d006eb1886fdc438135de61d7d482 (patch)
treecaecba50765419de1cc474a4c1edc826f40bc207 /docs
parent7df6b9112e2ac6ecbc97181213177273e09a5b65 (diff)
downloadpython-setuptools-git-3f2a0370ff7d006eb1886fdc438135de61d7d482.tar.gz
Prefer "command" to "function". Use direct imperative voice.
Diffstat (limited to 'docs')
-rw-r--r--docs/build_meta.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/build_meta.rst b/docs/build_meta.rst
index bd6aa6f3..27df70a2 100644
--- a/docs/build_meta.rst
+++ b/docs/build_meta.rst
@@ -56,9 +56,9 @@ setuptools, the content would be::
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
-The ``setuptools`` package will implement the ``build_sdist``
-function and the ``wheel`` package will provide the ``build_wheel``
-function; both are required to be compliant with PEP 517.
+The ``setuptools`` package implements the ``build_sdist``
+command and the ``wheel`` package implements the ``build_wheel``
+command; both are required to be compliant with PEP 517.
Use ``setuptools``' :ref:`declarative config <declarative config>` to
specify the package information::