Fix wording

Simon Brandt
2025-02-19 12:57:03 +01:00
parent c555e0b2dc
commit 240c58e83e

@@ -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: