From f22a564a2b4c1a67d20b8670a8a1e81a98a898ca Mon Sep 17 00:00:00 2001 From: Daniel Phillips Date: Thu, 7 Mar 2019 20:35:59 +1100 Subject: [PATCH] Fix pip specifier documentation mistake where 'former' was incorrectly used instead of 'latter' (#3507) --- docs/basics.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/basics.rst b/docs/basics.rst index 00f4c7d9..a46471fb 100644 --- a/docs/basics.rst +++ b/docs/basics.rst @@ -207,7 +207,7 @@ To make inclusive or exclusive version comparisons you can use: :: to avoid issues with `Input and output redirection `_ 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.*)