diff --git a/inc/ini-config b/inc/ini-config index 42a66c63b6..d2830d79cd 100644 --- a/inc/ini-config +++ b/inc/ini-config @@ -205,7 +205,7 @@ $option = $value } # Set a multiple line option in an INI file -# iniset_multiline [-sudo] config-file section option value1 value2 valu3 ... +# iniset_multiline [-sudo] config-file section option value1 value2 value3 ... function iniset_multiline { local xtrace xtrace=$(set +o | grep xtrace) diff --git a/inc/python b/inc/python index 91ceb44499..59668a2c6a 100644 --- a/inc/python +++ b/inc/python @@ -17,7 +17,7 @@ set +o xtrace # Global Config Variables -# PROJECT_VENV contains the name of the virtual enviromnet for each +# PROJECT_VENV contains the name of the virtual environment for each # project. A null value installs to the system Python directories. declare -A PROJECT_VENV @@ -35,7 +35,7 @@ function get_pip_command { fi } -# Get the path to the direcotry where python executables are installed. +# Get the path to the directory where python executables are installed. # get_python_exec_prefix function get_python_exec_prefix { local xtrace @@ -93,7 +93,7 @@ function pip_install { fi if [[ $TRACK_DEPENDS = True && ! "$@" =~ virtualenv ]]; then # TRACK_DEPENDS=True installation creates a circular dependency when - # we attempt to install virtualenv into a virualenv, so we must global + # we attempt to install virtualenv into a virtualenv, so we must global # that installation. source $DEST/.venv/bin/activate local cmd_pip=$DEST/.venv/bin/pip @@ -199,7 +199,7 @@ function setup_lib { setup_install $dir } -# setup a library by name in editiable mode. If we are trying to use +# setup a library by name in editable mode. If we are trying to use # the library from git, we'll do a git based install, otherwise we'll # punt and the library should be installed by a requirements pull from # another project. diff --git a/tests/run-process.sh b/tests/run-process.sh index bdf1395d07..301b9a032b 100755 --- a/tests/run-process.sh +++ b/tests/run-process.sh @@ -5,7 +5,7 @@ # # Set USE_SCREEN True|False to change use of screen. # -# This script emulates the basic exec envirnment in ``stack.sh`` to test +# This script emulates the basic exec environment in ``stack.sh`` to test # the process spawn and kill operations. if [[ -z $1 ]]; then