From c4332e28dbb5c6f3e17dd07e742fee5423bbad77 Mon Sep 17 00:00:00 2001 From: wileyhy <84648683+wileyhy@users.noreply.github.com> Date: Sat, 5 Oct 2024 22:29:02 -0700 Subject: [PATCH] In rule description, changed single quotes (`var=''`) to double quotes (`var=""`), which are sufficient. --- SC1007.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SC1007.md b/SC1007.md index 6afa899..d5ee5e4 100644 --- a/SC1007.md +++ b/SC1007.md @@ -1,4 +1,4 @@ -# Remove space after `=` if trying to assign a value (or for empty string, use `var=''` ... ). +# Remove space after `=` if trying to assign a value (or for empty string, use `var=""` ... ). ### Problematic code: