From a878a44f8bd2f492e71cdf7a5011e6823277ff43 Mon Sep 17 00:00:00 2001 From: Simon Brandt <123938598+Simon-Brandt@users.noreply.github.com> Date: Wed, 27 Aug 2025 14:21:26 +0200 Subject: [PATCH] Fix typo, capitalize "ShellCheck" --- SC2229.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'