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: