Updated SC3044 (markdown)

Vidar Holen
2021-05-01 20:57:18 -07:00
parent cab8a4c983
commit d66281ad50

@@ -26,7 +26,7 @@ declare ...
If assigning a simple variable outside of a function, skip `declare` all together: If assigning a simple variable outside of a function, skip `declare` all together:
```sh ```sh
var=value var="value"
``` ```
If declaring a variable read-only: If declaring a variable read-only:
@@ -42,7 +42,7 @@ If you are unable to find a suitable replacement, consider switching to a shell
declare ... declare ...
``` ```
Indexed arrays, associative arrays, local variables, namerefs, and integer variables are not supported in POSIX sh. Indexed arrays, associative arrays, local variables, namerefs, and integer variables are not supported in POSIX sh. Either write around them, or switch to a shell that supports them.
### Rationale: ### Rationale: