diff --git a/SC2229.md b/SC2229.md index 9916c80..64d5070 100644 --- a/SC2229.md +++ b/SC2229.md @@ -14,7 +14,7 @@ read foo ### 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 read $foo # Reads data into 'bar', not into 'foo'