diff options
author | Louis Maddox <lmmx@users.noreply.github.com> | 2022-08-12 09:51:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-12 09:51:31 +0100 |
commit | 701842af368ca51263f027a4281de666b9f4da77 (patch) | |
tree | 0ba0a2694a8c1766153e4799585bf83eff442f41 /docs/userguide/development_mode.rst | |
parent | a4d181bfc628c0fa6fac61218575017c91f9c2f0 (diff) | |
download | python-setuptools-git-701842af368ca51263f027a4281de666b9f4da77.tar.gz |
Typo in user guide: development mode
`PATHONPATH` --> `PYTHONPATH`
Diffstat (limited to 'docs/userguide/development_mode.rst')
-rw-r--r-- | docs/userguide/development_mode.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/userguide/development_mode.rst b/docs/userguide/development_mode.rst index e7c755ad..ddf9a3f4 100644 --- a/docs/userguide/development_mode.rst +++ b/docs/userguide/development_mode.rst @@ -5,7 +5,7 @@ When creating a Python project, developers usually want to implement and test changes iteratively, before cutting a release and preparing a distribution archive. In normal circumstances this can be quite cumbersome and require the developers -to manipulate the ``PATHONPATH`` environment variable or to continuous re-build +to manipulate the ``PYTHONPATH`` environment variable or to continuous re-build and re-install the project. To facilitate iterative exploration and experimentation, setuptools allows |