diff options
author | Vincent Philippon <sindaewoh@gmail.com> | 2018-02-19 18:37:19 -0500 |
---|---|---|
committer | Vincent Philippon <sindaewoh@gmail.com> | 2018-02-19 18:37:19 -0500 |
commit | 0d99729166cc722bc86a1284141f45ab34bca793 (patch) | |
tree | a263f9516d172a243d92ae289ac273b238a95797 | |
parent | 885402d3ffb3d77dca661487038aa88aaaa483cc (diff) | |
download | external_python_setuptools-0d99729166cc722bc86a1284141f45ab34bca793.tar.gz external_python_setuptools-0d99729166cc722bc86a1284141f45ab34bca793.tar.bz2 external_python_setuptools-0d99729166cc722bc86a1284141f45ab34bca793.zip |
Fix documentation spacing error causing wrong formatting.
-rw-r--r-- | docs/pkg_resources.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/pkg_resources.txt b/docs/pkg_resources.txt index 8d337cb2..b40a209f 100644 --- a/docs/pkg_resources.txt +++ b/docs/pkg_resources.txt @@ -638,7 +638,7 @@ Requirements Parsing sorted into ascending version order, and used to establish what ranges of versions are acceptable. Adjacent redundant conditions are effectively consolidated (e.g. ``">1, >2"`` produces the same results as ``">2"``, and - ``"<2,<3"`` produces the same results as``"<2"``). ``"!="`` versions are + ``"<2,<3"`` produces the same results as ``"<2"``). ``"!="`` versions are excised from the ranges they fall within. The version being tested for acceptability is then checked for membership in the resulting ranges. |