Updated SC2290 (markdown)

Vidar Holen
2021-07-24 13:25:14 -07:00
parent 1ec5313467
commit 313df7d2d1

@@ -21,6 +21,7 @@ Parameters to `export`, `declare`, `local`, `typeset` and `readonly` may not hav
export var= value # Invalid: space after =
export var=value # Valid
This is because each individual argument to these commands is interpreted as a string in the format `name=value`. By adding spaces, you are instead passing the three strings `var`, `=`, `value`, none of which follow this format.
### Exceptions: