aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xchallenge-096/abigail/bash/ch-1.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-096/abigail/bash/ch-1.sh b/challenge-096/abigail/bash/ch-1.sh
index f4d4de34cb..65c6e20bdb 100755
--- a/challenge-096/abigail/bash/ch-1.sh
+++ b/challenge-096/abigail/bash/ch-1.sh
@@ -17,7 +17,7 @@ do
#
# Iterate over the words backwards, and print them.
#
- for ((i = ${#words[@]} - 1; i >= 0; i --));
+ for ((i = ${#words[@]} - 1; i >= 0; i --));
do printf "%s" ${words[$i]}
#
# Print a newline after the final word; otherwise,