From 0f8d21e4fb0b92760038536d811691e57ba691ca Mon Sep 17 00:00:00 2001 From: Simon Brandt <123938598+Simon-Brandt@users.noreply.github.com> Date: Thu, 6 Feb 2025 13:29:35 +0100 Subject: [PATCH] Fix typo in ID in `shellcheck disable` directive --- SC2302.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SC2302.md b/SC2302.md index 7dbb721..b6e16c6 100644 --- a/SC2302.md +++ b/SC2302.md @@ -55,7 +55,7 @@ declare -A fatherOf=( ["Gudrød the Hunter"]="Halfdan the Mild" ) -# shellcheck disable=SC2302,SC23203 +# shellcheck disable=SC2302,SC2303 for i in "${fatherOf[@]}" do echo "${fatherOf[$i]:-(missing)} begat $i"