Spelling fixes (#352)

This commit is contained in:
Ville Skyttä
2022-10-10 21:50:28 +03:00
committed by GitHub
parent 057b9be9d8
commit 3c0edf888e
2 changed files with 2 additions and 2 deletions

View File

@@ -7,7 +7,7 @@
#### 1.1.4
* Support newer conda (#290)
* Prefer `python3.x` executable if avaialble (#206, #282, #296)
* Prefer `python3.x` executable if available (#206, #282, #296)
#### 1.1.3

View File

@@ -145,7 +145,7 @@ detect_venv() {
if [ -x "${prefix}/bin/virtualenv" ]; then
HAS_VIRTUALENV=1
fi
# Prefer `python3.x` executable if avaialble (#206, #282)
# Prefer `python3.x` executable if available (#206, #282)
local python
for python in "python${PYENV_VERSION%.*}" "python${PYENV_VERSION%%.*}" "python"; do
if pyenv-exec "${python}" -m venv --help 1>/dev/null 2>&1; then