summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJürgen Gmach <juergen.gmach@googlemail.com>2021-04-09 00:35:14 +0200
committerGitHub <noreply@github.com>2021-04-08 23:35:14 +0100
commit1a50180682fc861d9c6cad0f73adf77e42523387 (patch)
tree0220d5d7ef7f157a67628ef9b0cf405db1b0052a /src
parent9608e238d097201176f66c22566069cb6ef3a1d6 (diff)
downloadtox-git-1a50180682fc861d9c6cad0f73adf77e42523387.tar.gz
minor doc improvements (#2006)
Diffstat (limited to 'src')
-rw-r--r--src/tox/plugin/spec.py2
-rw-r--r--src/tox/session/cmd/quickstart.py2
-rw-r--r--src/tox/session/cmd/run/common.py6
3 files changed, 5 insertions, 5 deletions
diff --git a/src/tox/plugin/spec.py b/src/tox/plugin/spec.py
index e691742c..4ad80529 100644
--- a/src/tox/plugin/spec.py
+++ b/src/tox/plugin/spec.py
@@ -20,7 +20,7 @@ def _spec(func: _F) -> _F:
@_spec
def tox_register_tox_env(register: ToxEnvRegister) -> None: # noqa: U100
"""
- Register new tox environment type that. You can register:
+ Register new tox environment type. You can register:
- **run environment**: by default this is a local subprocess backed virtualenv Python
- **packaging environment**: by default this is a PEP-517 compliant local subprocess backed virtualenv Python
diff --git a/src/tox/session/cmd/quickstart.py b/src/tox/session/cmd/quickstart.py
index 2395ca16..c72600a3 100644
--- a/src/tox/session/cmd/quickstart.py
+++ b/src/tox/session/cmd/quickstart.py
@@ -15,7 +15,7 @@ def tox_add_option(parser: ToxParser) -> None:
our = parser.add_command(
"quickstart",
["q"],
- "Command-line script to quickly tox config file for a Python project",
+ "Command line script to quickly create a tox config file for a Python project",
quickstart,
)
our.add_argument(
diff --git a/src/tox/session/cmd/run/common.py b/src/tox/session/cmd/run/common.py
index adc63d25..49704e4e 100644
--- a/src/tox/session/cmd/run/common.py
+++ b/src/tox/session/cmd/run/common.py
@@ -63,7 +63,7 @@ def env_run_create_flags(parser: ArgumentParser, mode: str) -> None:
metavar="path",
of_type=Path,
default=None,
- help="write a json file with detailed information about all commands and results involved",
+ help="write a JSON file with detailed information about all commands and results involved",
)
if mode != "devenv":
parser.add_argument(
@@ -101,7 +101,7 @@ def env_run_create_flags(parser: ArgumentParser, mode: str) -> None:
parser.add_argument(
"--develop",
action="store_true",
- help="install package in develop mode",
+ help="install package in development mode",
dest="develop",
)
parser.add_argument(
@@ -118,7 +118,7 @@ def env_run_create_flags(parser: ArgumentParser, mode: str) -> None:
dest="discover",
nargs="+",
metavar="path",
- help="for python discovery first try the python executables under these paths",
+ help="for Python discovery first try the Python executables under these paths",
default=[],
)
parser.add_argument(