From 3ed077fa5a82bec81693876b4a0414b9d16d5d91 Mon Sep 17 00:00:00 2001 From: Anderson Bravalheri Date: Mon, 13 Jun 2022 09:43:16 +0100 Subject: Apply suggestions from code review --- docs/userguide/development_mode.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/userguide/development_mode.rst') 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. -- cgit v1.2.1