summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorholger krekel <holger@merlinux.eu>2015-05-04 14:40:47 +0200
committerholger krekel <holger@merlinux.eu>2015-05-04 14:40:47 +0200
commitecdad82f66a6e6678276d7101f7d0457de27ecd7 (patch)
tree12fa1fa3b9aae3b50d1a96664af9d5a3385a8ced
parentbd1fe4c0842632dc34743c5f79da5fbd11211d33 (diff)
parent2ab21b8f46155ffe11fef12b402a6f6ba070a6ed (diff)
downloadtox-ecdad82f66a6e6678276d7101f7d0457de27ecd7.tar.gz
Merged in stevepiercy/tox (pull request #150)
grammar fix
-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