summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2015-04-30 20:44:12 +0000
committerSteve Piercy <web@stevepiercy.com>2015-04-30 20:44:12 +0000
commit54c821f44c2536323ed9bdbe180fa303a96ba3b6 (patch)
tree07226442a3a824c4fe66091f1d13c83761f0f727
parentf2f06387a10c20ce0f657919540b137724c089f3 (diff)
downloadtox-54c821f44c2536323ed9bdbe180fa303a96ba3b6.tar.gz
grammar fixes
-rw-r--r--doc/example/general.txt9
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/example/general.txt b/doc/example/general.txt
index b7aab37..1a27549 100644
--- a/doc/example/general.txt
+++ b/doc/example/general.txt
@@ -147,8 +147,8 @@ section, for example::
Avoiding expensive sdist
------------------------
-Some projects are large enough that running and sdist, followed by
-an install everytime can be prohibitively costly. To solve this,
+Some projects are large enough that running an sdist, followed by
+an install every time can be prohibitively costly. To solve this,
there are two different options you can add to the ``tox`` section. First,
you can simply ask tox to please not make an sdist::
@@ -156,7 +156,7 @@ you can simply ask tox to please not make an sdist::
skipsdist=True
If you do this, your local software package will not be installed into
-the virtualenv. You should probably be ok with that, or take steps
+the virtualenv. You should probably be okay with that, or take steps
to deal with it in your commands section::
[testenv]
@@ -164,7 +164,8 @@ to deal with it in your commands section::
python setup.py develop
py.test
-Running setup.py develop is a common enough model that it has its own option::
+Running ``setup.py develop`` is a common enough model that it has its own
+option::
[testenv]
usedevelop=True