diff options
author | Helio Machado <0x2b3bfa0+git@googlemail.com> | 2022-08-21 15:30:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-21 15:30:49 +0200 |
commit | ecd7d70a046c6d95c5f5b3b102c500825ea234f0 (patch) | |
tree | 99e2e9f46adcd47d8081e8b22168265584086f64 /docs/userguide | |
parent | e551496e9948a272b42f4a654d722500149380d2 (diff) | |
download | python-setuptools-git-ecd7d70a046c6d95c5f5b3b102c500825ea234f0.tar.gz |
Fix typo in docs/userguide/extension.rst
Diffstat (limited to 'docs/userguide')
-rw-r--r-- | docs/userguide/extension.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/userguide/extension.rst b/docs/userguide/extension.rst index b49816b0..6f8cbbb2 100644 --- a/docs/userguide/extension.rst +++ b/docs/userguide/extension.rst @@ -57,7 +57,7 @@ a ``foo`` command, you might add something like this to your project: foo = mypackage.some_module:foo Assuming, of course, that the ``foo`` class in ``mypackage.some_module`` is -a ``setuptools.Command`` subclass (documented bellow). +a ``setuptools.Command`` subclass (documented below). Once a project containing such entry points has been activated on ``sys.path``, (e.g. by running ``pip install``) the command(s) will be available to any |