Skip to content

Commit 4640026

Browse files
committed
Fix spelling mistakes
git ls-files | misspellings -f - Source: https://github.com/lyda/misspell-check Change-Id: I7d63578734ca5cc1ec865a7d024c1a013d1ada87
1 parent b3e8ea8 commit 4640026

16 files changed

Lines changed: 21 additions & 21 deletions

HACKING.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ These scripts are executed serially by ``exercise.sh`` in testing situations.
174174
the script on non-zero exit codes::
175175

176176
# This script exits on an error so that errors don't compound and you see
177-
# only the first error that occured.
177+
# only the first error that occurred.
178178
set -o errexit
179179

180180
# Print the commands being run so that we can see the command that triggers

exerciserc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ export RUNNING_TIMEOUT=${RUNNING_TIMEOUT:-$(($BOOT_TIMEOUT + $ACTIVE_TIMEOUT))}
2121
# Max time to wait for a vm to terminate
2222
export TERMINATE_TIMEOUT=${TERMINATE_TIMEOUT:-30}
2323

24-
# Max time to wait for a euca-volume command to propogate
24+
# Max time to wait for a euca-volume command to propagate
2525
export VOLUME_TIMEOUT=${VOLUME_TIMEOUT:-30}
2626

27-
# Max time to wait for a euca-delete command to propogate
27+
# Max time to wait for a euca-delete command to propagate
2828
export VOLUME_DELETE_TIMEOUT=${SNAPSHOT_DELETE_TIMEOUT:-60}
2929

3030
# The size of the volume we want to boot from; some storage back-ends

exercises/boot_from_volume.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ echo "Begin DevStack Exercise: $0"
1111
echo "*********************************************************************"
1212

1313
# This script exits on an error so that errors don't compound and you see
14-
# only the first error that occured.
14+
# only the first error that occurred.
1515
set -o errexit
1616

1717
# Print the commands being run so that we can see the command that triggers

exercises/bundle.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ echo "Begin DevStack Exercise: $0"
1010
echo "*********************************************************************"
1111

1212
# This script exits on an error so that errors don't compound and you see
13-
# only the first error that occured.
13+
# only the first error that occurred.
1414
set -o errexit
1515

1616
# Print the commands being run so that we can see the command that triggers

exercises/client-args.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
# **client-args.sh**
44

5-
# Test OpenStack client authentication aguemnts handling
5+
# Test OpenStack client authentication arguments handling
66

77
echo "*********************************************************************"
88
echo "Begin DevStack Exercise: $0"
99
echo "*********************************************************************"
1010

1111
# This script exits on an error so that errors don't compound and you see
12-
# only the first error that occured.
12+
# only the first error that occurred.
1313
set -o errexit
1414

1515
# Print the commands being run so that we can see the command that triggers

exercises/client-env.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
# **client-env.sh**
44

5-
# Test OpenStack client enviroment variable handling
5+
# Test OpenStack client environment variable handling
66

77
echo "*********************************************************************"
88
echo "Begin DevStack Exercise: $0"
99
echo "*********************************************************************"
1010

1111
# This script exits on an error so that errors don't compound and you see
12-
# only the first error that occured.
12+
# only the first error that occurred.
1313
set -o errexit
1414

1515
# Print the commands being run so that we can see the command that triggers

exercises/euca.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ echo "Begin DevStack Exercise: $0"
1010
echo "*********************************************************************"
1111

1212
# This script exits on an error so that errors don't compound and you see
13-
# only the first error that occured.
13+
# only the first error that occurred.
1414
set -o errexit
1515

1616
# Print the commands being run so that we can see the command that triggers
@@ -90,7 +90,7 @@ if [[ "$ENABLED_SERVICES" =~ "c-vol" ]]; then
9090

9191
# Test volume has become available
9292
if ! timeout $RUNNING_TIMEOUT sh -c "while ! euca-describe-volumes $VOLUME | grep -q available; do sleep 1; done"; then
93-
die $LINENO "volume didnt become available within $RUNNING_TIMEOUT seconds"
93+
die $LINENO "volume didn't become available within $RUNNING_TIMEOUT seconds"
9494
fi
9595

9696
# Attach volume to an instance

exercises/floating_ips.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ echo "Begin DevStack Exercise: $0"
99
echo "*********************************************************************"
1010

1111
# This script exits on an error so that errors don't compound and you see
12-
# only the first error that occured.
12+
# only the first error that occurred.
1313
set -o errexit
1414

1515
# Print the commands being run so that we can see the command that triggers

exercises/horizon.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ echo "Begin DevStack Exercise: $0"
99
echo "*********************************************************************"
1010

1111
# This script exits on an error so that errors don't compound and you see
12-
# only the first error that occured.
12+
# only the first error that occurred.
1313
set -o errexit
1414

1515
# Print the commands being run so that we can see the command that triggers

exercises/quantum-adv-test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ echo "Begin DevStack Exercise: $0"
1010
echo "*********************************************************************"
1111

1212
# This script exits on an error so that errors don't compound and you see
13-
# only the first error that occured.
13+
# only the first error that occurred.
1414

1515
set -o errtrace
1616

0 commit comments

Comments
 (0)