aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXe Iaso <me@xeiaso.net>2024-01-15 14:20:50 -0500
committerXe Iaso <me@xeiaso.net>2024-01-15 14:20:50 -0500
commitae5283f759ecfc72f6779f57231991d0a881a8a9 (patch)
tree2dcfa23ed12ce8edbdf0326c2e0562daa84e4f9d
parent7904f8ce518ce36df1b346a7a0c7786404ffb1ae (diff)
downloadxesite-ae5283f759ecfc72f6779f57231991d0a881a8a9.tar.xz
xesite-ae5283f759ecfc72f6779f57231991d0a881a8a9.zip
fuck
Signed-off-by: Xe Iaso <me@xeiaso.net>
-rw-r--r--lume/src/notes/2024/bash-hashmap.mdx2
1 files changed, 1 insertions, 1 deletions
diff --git a/lume/src/notes/2024/bash-hashmap.mdx b/lume/src/notes/2024/bash-hashmap.mdx
index bafb478..61c4685 100644
--- a/lume/src/notes/2024/bash-hashmap.mdx
+++ b/lume/src/notes/2024/bash-hashmap.mdx
@@ -55,7 +55,7 @@ done
You can iterate over the values with a `for` loop on the `*` value:
```shell
-for region in "${FLY_REGIONS[@]}"; do
+for region in "${FLY_REGIONS[*]}"; do
echo "region: $region"
done
```