diff options
author | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2022-08-05 10:10:18 +0100 |
---|---|---|
committer | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2022-08-05 10:10:18 +0100 |
commit | 4a376230b3250e2c9dae5454071e6d387c11bb62 (patch) | |
tree | 48aa0f2cd7c742ad5fd677448dd999b57045dc64 /docs | |
parent | 3f498801ad8450f661a51bdfea6b844c72a5b53e (diff) | |
download | python-setuptools-git-4a376230b3250e2c9dae5454071e6d387c11bb62.tar.gz |
docs: Fix phrases in userguide/development_mode
Diffstat (limited to 'docs')
-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 fcfed9e8..16b67d5a 100644 --- a/docs/userguide/development_mode.rst +++ b/docs/userguide/development_mode.rst @@ -53,11 +53,11 @@ Please have a look on the following section if you are looking for a different b .. admonition:: Virtual Environments - You can think virtual environments as "isolated Python runtime deployments" + You can think about virtual environments as "isolated Python runtime deployments" that allow users to install different sets of libraries and tools without messing with the global behaviour of the system. - They are the safest way of testing new projects and can be created easily + They are a safe way of testing new projects and can be created easily with the :mod:`venv` module from the standard library. Please note however that depending on your operating system or distribution, |