From c1a6b0f5f5e1c17263aeeee975255b97c18970ed Mon Sep 17 00:00:00 2001 From: daniel-teuchert-sonarsource <141642369+daniel-teuchert-sonarsource@users.noreply.github.com> Date: Mon, 3 Feb 2025 11:57:51 +0100 Subject: [PATCH] Modify rule S4036: Fix Code Example (#4640) --- rules/S4036/go/rule.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules/S4036/go/rule.adoc b/rules/S4036/go/rule.adoc index 320c50b406..6232316b51 100644 --- a/rules/S4036/go/rule.adoc +++ b/rules/S4036/go/rule.adoc @@ -15,7 +15,7 @@ out, _ := exec.Command("ls").CombinedOutput() // Sensitive [source,go] ---- -out, _ := exec.Command("/bin/ls").CombinedOutput() // Compliant +out, _ := exec.Command("/bin/ls").CombinedOutput() ---- include::../see.adoc[]