Skip to content

Commit

Permalink
Merge pull request #3522 from davidjb/patch-2
Browse files Browse the repository at this point in the history
Docs: clarify quoting in version specs note
  • Loading branch information
frostming authored Mar 8, 2019
2 parents 6b8745d + 546e3ac commit d4c8d17
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/basics.rst
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ To make inclusive or exclusive version comparisons you can use: ::
$ pipenv install "requests<=2.13" # will install a version equal or lower than 2.13.0
$ pipenv install "requests>2.19" # will install 2.19.1 but not 2.19.0

.. note:: The use of ``" "`` around the package and version specification is highly recommended
.. note:: The use of double quotes around the package and version specification (i.e. ``"requests>2.19"``) is highly recommended
to avoid issues with `Input and output redirection <https://robots.thoughtbot.com/input-output-redirection-in-the-shell>`_
in Unix-based operating systems.

Expand Down
1 change: 1 addition & 0 deletions news/3522.doc.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Clarify wording in Basic Usage example on using double quotes to escape shell redirection

0 comments on commit d4c8d17

Please sign in to comment.