diff options
author | Anderson Bravalheri <andersonbravalheri+github@gmail.com> | 2022-06-13 09:43:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-13 09:43:16 +0100 |
commit | 3ed077fa5a82bec81693876b4a0414b9d16d5d91 (patch) | |
tree | 45593a5968273eb2a5361cba8c402dfd34c4df61 /docs/userguide/development_mode.rst | |
parent | ffd84e8dd6fd2aaa30f1ff02ce44b4794a56a93c (diff) | |
download | python-setuptools-git-3ed077fa5a82bec81693876b4a0414b9d16d5d91.tar.gz |
Apply suggestions from code review
Diffstat (limited to 'docs/userguide/development_mode.rst')
-rw-r--r-- | docs/userguide/development_mode.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/userguide/development_mode.rst b/docs/userguide/development_mode.rst index 822ee4f8..fafcc527 100644 --- a/docs/userguide/development_mode.rst +++ b/docs/userguide/development_mode.rst @@ -18,7 +18,7 @@ code in its checkout directory, and only need to run build commands when you change files that need to be compiled or the provided metadata and setuptools configuration. You can perform a ``pip`` installation passing the ``-e/--editable`` -flag (e.g. ``pip install -e .``). It works very similarly to +flag (e.g., ``pip install -e .``). It works very similarly to ``pip install .``, except that it doesn't actually install anything. Instead, it creates a special ``.egg-link`` file in the target directory (usually ``site-packages``) that links to your project's source code. @@ -26,7 +26,7 @@ It may also update an existing ``easy-install.pth`` file to include your project's source code, thereby making it available on ``sys.path`` for all programs using that Python installation. -You can deploy the same project to multiple staging areas, e.g. if you have +You can deploy the same project to multiple staging areas, e.g., if you have multiple projects on the same machine that are sharing the same project you're doing development work. |