diff options
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 |