From 552d943762a25e06c984e935bdce2e4bfa7b27ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?O=C4=9Fuzhan=20=C3=87elikarslan?= Date: Tue, 9 Nov 2021 09:50:29 +0300 Subject: [PATCH] Fix typos in command examples (#2147) --- libexec/pyenv-exec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libexec/pyenv-exec b/libexec/pyenv-exec index 26816271..251a4f7c 100755 --- a/libexec/pyenv-exec +++ b/libexec/pyenv-exec @@ -8,10 +8,10 @@ # version's `bin' directory is at the front. # # For example, if the currently selected Python version is 2.7.6: -# pyenv exec pip install -rrequirements.txt +# pyenv exec pip install -r requirements.txt # # is equivalent to: -# PATH="$PYENV_ROOT/versions/2.7.6/bin:$PATH" pip install -rrequirements.txt +# PATH="$PYENV_ROOT/versions/2.7.6/bin:$PATH" pip install -r requirements.txt set -e [ -n "$PYENV_DEBUG" ] && set -x