From 0a3ffcf16f7278c15d13d9c0c6e90de653a811e5 Mon Sep 17 00:00:00 2001 From: Abigail Date: Thu, 21 Jan 2021 22:02:59 +0100 Subject: Layout --- challenge-096/abigail/bash/ch-1.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- cgit