Skip to content

Commit ba86ead

Browse files
michaelsakijsf9k
andauthored
Fix grammar and capitalization errors
Co-authored-by: Shane Frasier <[email protected]>
1 parent f924584 commit ba86ead

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ install the necessary tools. Before running this ensure that you have
8282
installed the prerequisites for your platform according to the
8383
[`pyenv` wiki
8484
page](https://github.com/pyenv/pyenv/wiki/common-build-problems).
85-
`Gnu-getopt` is generally included in the core utilities of most
85+
`gnu-getopt` is generally included in the core utilities of most
8686
Linux distributions.
8787

8888
On WSL you should treat your platform as whatever Linux distribution

setup-env

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ USAGE=$(
99
Configure a development environment for this repository.
1010
1111
It does the following:
12-
- Allows user to specify Python version.
13-
- Allows user to choose name for their virtual environment.
12+
- Allows the user to specify the Python version to use for the virtual environment.
13+
- Allows the user to specify a name for the virtual environment.
1414
- Verifies pyenv and pyenv-virtualenv are installed.
15-
- Creates a Python virtual environment.
15+
- Creates the Python virtual environment.
1616
- Configures the activation of the virtual enviroment for the repo directory.
1717
- Installs the requirements needed for development.
1818
- Installs git pre-commit hooks.
@@ -29,7 +29,7 @@ Options:
2929
-i | --install-hooks Install hook environments for all environments in the
3030
pre-commit config file.
3131
-l | --list-versions List available Python versions and select interactively.
32-
-n | --name Choose the name of the virtual environment.
32+
-n | --name Specify the name of the virtual environment.
3333
-v | --version Specify the Python version for the virtual environment.
3434
3535
END_OF_LINE
@@ -195,7 +195,7 @@ if [ $FORCE -ne 0 ]; then
195195
elif [[ -f .python-version ]]; then
196196
cat << 'END_OF_LINE'
197197
An existing .python-version file was found. Either remove this file yourself
198-
or re-run with -f (force) option to have it deleted along with the associated
198+
or re-run with the --force option to have it deleted along with the associated
199199
virtual environment.
200200
201201
rm .python-version
@@ -216,7 +216,7 @@ fi
216216
if ! pyenv virtualenv ${PYTHON_VERSION:=} "${env_name}"; then
217217
cat << END_OF_LINE
218218
An existing virtual environment named $env_name was found. Either delete this
219-
environment yourself or re-run with -f (force) option to have it deleted.
219+
environment yourself or re-run with the --force option to have it deleted.
220220
221221
pyenv virtualenv-delete ${env_name}
222222

0 commit comments

Comments
 (0)