Fix typo, capitalize "ShellCheck"

Simon Brandt
2025-08-27 14:21:26 +02:00
parent 2a1f8a3be2
commit a878a44f8b

@@ -14,7 +14,7 @@ read foo
### Rationale: ### Rationale:
`read` takes a variable name, but shellcheck has noticed that you give it an expanded variable instead. This will populate whatever the variable expans to instead of the variable itself. For example: `read` takes a variable name, but ShellCheck has noticed that you give it an expanded variable instead. This will populate whatever the variable expands to instead of the variable itself. For example:
foo=bar foo=bar
read $foo # Reads data into 'bar', not into 'foo' read $foo # Reads data into 'bar', not into 'foo'