From 240c58e83e88f09aca3115400eaf47c7abdb792b Mon Sep 17 00:00:00 2001 From: Simon Brandt <123938598+Simon-Brandt@users.noreply.github.com> Date: Wed, 19 Feb 2025 12:57:03 +0100 Subject: [PATCH] Fix wording --- SC3030.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SC3030.md b/SC3030.md index 9cda922..ffde323 100644 --- a/SC3030.md +++ b/SC3030.md @@ -44,7 +44,7 @@ printf '%s' "$x" | Arrays are specific to Bash and Ksh, but you are using them in a script declared to run with `sh` or `dash`. These shells do not support arrays at all. You should either switch to Bash/Ksh, or rewrite the script to not use arrays. -There are no great replacements, especially not that can be mechanically applied, but using the positional parameters or a delimited string works in many cases, as shown in the examples. +There are no great replacements, especially none that can be mechanically applied, but using the positional parameters or a delimited string works in many cases, as shown in the examples. ### Exceptions: