Browse code

Fix comment typos in inc/ and tests/ directories

valu3 => value3
enviromnet => environment
direcotry => directory
virualenv => virtualenv
editiable => editable
envirnment => environment

Change-Id: I97fb2d44a37b16d02d4fbdb08bfa33414349f651

Atsushi SAKAI authored on 2015/11/30 20:20:21
Showing 3 changed files
... ...
@@ -205,7 +205,7 @@ $option = $value
205 205
 }
206 206
 
207 207
 # Set a multiple line option in an INI file
208
-# iniset_multiline [-sudo] config-file section option value1 value2 valu3 ...
208
+# iniset_multiline [-sudo] config-file section option value1 value2 value3 ...
209 209
 function iniset_multiline {
210 210
     local xtrace
211 211
     xtrace=$(set +o | grep xtrace)
... ...
@@ -17,7 +17,7 @@ set +o xtrace
17 17
 
18 18
 # Global Config Variables
19 19
 
20
-# PROJECT_VENV contains the name of the virtual enviromnet for each
20
+# PROJECT_VENV contains the name of the virtual environment for each
21 21
 # project.  A null value installs to the system Python directories.
22 22
 declare -A PROJECT_VENV
23 23
 
... ...
@@ -35,7 +35,7 @@ function get_pip_command {
35 35
     fi
36 36
 }
37 37
 
38
-# Get the path to the direcotry where python executables are installed.
38
+# Get the path to the directory where python executables are installed.
39 39
 # get_python_exec_prefix
40 40
 function get_python_exec_prefix {
41 41
     local xtrace
... ...
@@ -93,7 +93,7 @@ function pip_install {
93 93
     fi
94 94
     if [[ $TRACK_DEPENDS = True && ! "$@" =~ virtualenv ]]; then
95 95
         # TRACK_DEPENDS=True installation creates a circular dependency when
96
-        # we attempt to install virtualenv into a virualenv, so we must global
96
+        # we attempt to install virtualenv into a virtualenv, so we must global
97 97
         # that installation.
98 98
         source $DEST/.venv/bin/activate
99 99
         local cmd_pip=$DEST/.venv/bin/pip
... ...
@@ -199,7 +199,7 @@ function setup_lib {
199 199
     setup_install $dir
200 200
 }
201 201
 
202
-# setup a library by name in editiable mode. If we are trying to use
202
+# setup a library by name in editable mode. If we are trying to use
203 203
 # the library from git, we'll do a git based install, otherwise we'll
204 204
 # punt and the library should be installed by a requirements pull from
205 205
 # another project.
... ...
@@ -5,7 +5,7 @@
5 5
 #
6 6
 # Set USE_SCREEN True|False to change use of screen.
7 7
 #
8
-# This script emulates the basic exec envirnment in ``stack.sh`` to test
8
+# This script emulates the basic exec environment in ``stack.sh`` to test
9 9
 # the process spawn and kill operations.
10 10
 
11 11
 if [[ -z $1 ]]; then