@@ -15,8 +15,8 @@ Out of box tox supports three configuration locations prioritized in the followi
15
15
2. ``pyproject.toml ``,
16
16
3. ``setup.cfg ``.
17
17
18
- As far as the configuration format at the moment we only support a *ini-style *. ``tox.ini `` and ``setup.cfg `` are by
19
- nature such file , while in ``pyprojec .toml `` currently you can only inline the *ini-style * config.
18
+ With regards to the configuration format, at the moment we only support *ini-style *. ``tox.ini `` and ``setup.cfg `` are by
19
+ nature such files , while in ``pyproject .toml `` currently you can only inline the *ini-style * config.
20
20
21
21
Note that ``setup.cfg `` requires the content to be under the ``tox:tox `` and ``testenv `` sections and is otherwise
22
22
ignored. ``pyproject.toml `` on the other hand is in TOML format. However, one can inline the *ini-style * format under
@@ -72,7 +72,7 @@ to the default value for that setting. For example:
72
72
73
73
``pyproject.toml ``
74
74
~~~~~~~~~~~~~~~~~~
75
- You can inline a ``tox.ini `` style configuration under the ``tool: tox `` section and ``legacy_tox_ini `` key.
75
+ You can inline a ``tox.ini `` style configuration under the ``tool. tox `` section and ``legacy_tox_ini `` key.
76
76
77
77
Below you find the specification for the *ini-style * format, but you might want to skim some
78
78
examples first and use this page as a reference.
@@ -223,7 +223,7 @@ Python language core options
223
223
tox allows setting the Python version for an environment via the :ref: `basepython ` setting. If that's not set tox
224
224
can set a default value from the environment name (e.g. ``py310 `` implies Python 3.10). Matching up the Python
225
225
version with the environment name has became expected at this point, leading to surprises when some configs don't
226
- do so. To help with sanity of users a error will be raised whenever the environment name version does not matches
226
+ do so. To help with sanity of users, an error will be raised whenever the environment name version does not match
227
227
up with this expectation.
228
228
229
229
Furthermore, we allow hard enforcing this rule by setting this flag to ``true ``. In such cases we ignore the
0 commit comments