summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXander Johnson <alexx.johnson@gmail.com>2018-10-17 12:52:51 -0700
committerBernát Gábor <gaborjbernat@gmail.com>2018-10-17 20:52:51 +0100
commit610bad5e2038fe53ae4826352532f46fc34195e3 (patch)
tree0aacffe4a24d0cd092b278508e649cd802deb10e
parent8de2cefa6f0e6853dcdf2f0db9f683240d70aa82 (diff)
downloadtox-git-610bad5e2038fe53ae4826352532f46fc34195e3.tar.gz
Fix small typo where the word contraints was spelled as contrains (#1062)
* Fix small typo where the word contraints was spelled as contrains. Fixes 1061. Add rst file for changelog. Fixes 1061. Add myself to contributors list * Keep CONTRIBUTORS file in alphabetical ordering, with case sensitivity * Remove typo in rst file
-rw-r--r--CONTRIBUTORS1
-rw-r--r--docs/changelog/1061.doc.rst1
-rw-r--r--docs/example/basic.rst2
3 files changed, 3 insertions, 1 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS
index b596b1e7..4cc3b2e3 100644
--- a/CONTRIBUTORS
+++ b/CONTRIBUTORS
@@ -61,4 +61,5 @@ Stephen Finucane
Sridhar Ratnakumar
Sviatoslav Sydorenko
Ville Skyttä
+Xander Johnson
anatoly techtonik
diff --git a/docs/changelog/1061.doc.rst b/docs/changelog/1061.doc.rst
new file mode 100644
index 00000000..9a759124
--- /dev/null
+++ b/docs/changelog/1061.doc.rst
@@ -0,0 +1 @@
+change the spelling of a single word from contrains to the proper word, constraints - by :user:`metasyn`
diff --git a/docs/example/basic.rst b/docs/example/basic.rst
index e5f637d0..e082a17e 100644
--- a/docs/example/basic.rst
+++ b/docs/example/basic.rst
@@ -148,7 +148,7 @@ or
deps = -rrequirements.txt -cconstraints.txt
All installation commands are executed using ``{toxinidir}`` (the directory where ``tox.ini`` resides) as the current working directory.
-Therefore, the underlying ``pip`` installation will assume ``requirements.txt`` or ``constraints.txt`` to exist at ``{toxinidir}/requirements.txt`` or ``{toxinidir}/contrains.txt``.
+Therefore, the underlying ``pip`` installation will assume ``requirements.txt`` or ``constraints.txt`` to exist at ``{toxinidir}/requirements.txt`` or ``{toxinidir}/constraints.txt``.
This is actually a side effect that all elements of the dependency list is directly passed to ``pip``.