Fix pip specifier documentation mistake where 'former' was incorrectly used instead of 'latter' (#3507)

This commit is contained in:
Daniel Phillips
2019-03-07 20:35:59 +11:00
committed by Frost Ming
parent db3b743a58
commit f22a564a2b
+1 -1
View File
@@ -207,7 +207,7 @@ To make inclusive or exclusive version comparisons you can use: ::
to avoid issues with `Input and output redirection <https://robots.thoughtbot.com/input-output-redirection-in-the-shell>`_
in Unix-based operating systems.
The use of ``~=`` is preferred over the ``==`` identifier as the former prevents pipenv from updating the packages: ::
The use of ``~=`` is preferred over the ``==`` identifier as the latter prevents pipenv from updating the packages: ::
$ pipenv install "requests~=2.2" # locks the major version of the package (this is equivalent to using ==2.*)