Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed typo in user guide. #3277

Merged
merged 1 commit into from
May 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/user_guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ invocation, for example if we'd want to run ``pytest tests -v`` as a one off, in
``tox run -e py310 -- -v``. The ``--`` delimits flags for the tox tool and what should be forwarded to the tool within.

tox, by default, always creates a fresh virtual environment for every run environment. The Python version to use for a
given environment can be controlled via the :ref:`base_python` configuration, however if not set will try to use the
given environment can be controlled via the :ref:`base_python` configuration, however if not set tox will try to use the
environment name to determine something sensible: if the name is in the format of ``pyxy`` then tox will create an environment with CPython
with version ``x.y`` (for example ``py310`` means CPython ``3.10``). If the name does not match this pattern it will
use a virtual environment with the same Python version as the one tox is installed into (this is the case for
Expand Down