summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorhbielenia <hbielenia@users.noreply.github.com>2023-02-18 09:41:11 +0100
committerGitHub <noreply@github.com>2023-02-18 09:41:11 +0100
commit97ee678e8ededa2497b9f10ce8b45484ed37c215 (patch)
treea91588b86870d26b56ca2781ab6bbaf6571a6fc5 /docs
parent041bbf078632d3557c6b54b516f4078a9fd4b092 (diff)
downloadpython-setuptools-git-97ee678e8ededa2497b9f10ce8b45484ed37c215.tar.gz
Fix typo in docs/userguide/extension.rst
Diffstat (limited to 'docs')
-rw-r--r--docs/userguide/extension.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/userguide/extension.rst b/docs/userguide/extension.rst
index 6f8cbbb2..e1e37b5d 100644
--- a/docs/userguide/extension.rst
+++ b/docs/userguide/extension.rst
@@ -44,7 +44,7 @@ different aspect of the build. In ``setuptools``, however, these command
objects are just a design abstraction that encapsulate logic and help to
organise the code.
-You can overwrite exiting commands (or add new ones) by defining entry
+You can overwrite existing commands (or add new ones) by defining entry
points in the ``distutils.commands`` group. For example, if you wanted to add
a ``foo`` command, you might add something like this to your project: