typo

Wilfred Hughes
2021-10-20 18:59:15 -07:00
parent f292856a3b
commit 59e278f929

@@ -26,7 +26,7 @@ printf "Error: %s\n" "Bad parameters: " "${ARRAY_VAR[@]}"
### Rationale: ### Rationale:
The behavior when concatenating a string and array is rarely intended. The preceeding string is prefixed to the first array element, while the succeeding string is appended to the last one. The middle array elements are unaffected. The behavior when concatenating a string and array is rarely intended. The preceding string is prefixed to the first array element, while the succeeding string is appended to the last one. The middle array elements are unaffected.
E.g., with the parameters `foo`,`bar`,`baz`, `"--flag=$@"` is equivalent to the three arguments `"--flag=foo" "bar" "baz"`. E.g., with the parameters `foo`,`bar`,`baz`, `"--flag=$@"` is equivalent to the three arguments `"--flag=foo" "bar" "baz"`.