summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnderson Bravalheri <andersonbravalheri+github@gmail.com>2022-06-13 09:43:16 +0100
committerGitHub <noreply@github.com>2022-06-13 09:43:16 +0100
commit3ed077fa5a82bec81693876b4a0414b9d16d5d91 (patch)
tree45593a5968273eb2a5361cba8c402dfd34c4df61
parentffd84e8dd6fd2aaa30f1ff02ce44b4794a56a93c (diff)
downloadpython-setuptools-git-3ed077fa5a82bec81693876b4a0414b9d16d5d91.tar.gz
Apply suggestions from code review
-rw-r--r--docs/deprecated/running_commands.rst2
-rw-r--r--docs/index.rst2
-rw-r--r--docs/userguide/development_mode.rst4
3 files changed, 4 insertions, 4 deletions
diff --git a/docs/deprecated/running_commands.rst b/docs/deprecated/running_commands.rst
index 862f5fee..8d4ca93f 100644
--- a/docs/deprecated/running_commands.rst
+++ b/docs/deprecated/running_commands.rst
@@ -12,7 +12,7 @@ at the root of a Python project, as indicated in the examples below::
You could also run commands in other circumstances:
-* ``setuptools`` projects without ``setup.py`` (e.g. ``setup.cfg``-only)::
+* ``setuptools`` projects without ``setup.py`` (e.g., ``setup.cfg``-only)::
python -c "import setuptools; setup()" --help
diff --git a/docs/index.rst b/docs/index.rst
index 638ab20c..8328f87c 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -8,7 +8,7 @@ Setuptools is a fully-featured, actively-maintained, and stable library
designed to facilitate packaging Python projects.
It helps developers to easily share reusable code (in the form of a library)
-and programs (e.g. CLI/GUI tools implemented in Python), that can be installed
+and programs (e.g., CLI/GUI tools implemented in Python), that can be installed
with :pypi:`pip` and uploaded to `PyPI <http://pypi.org>`_.
.. toctree::
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.