From 9dbe69c132df02d13d087ecac0281bd3f339a3ea Mon Sep 17 00:00:00 2001 From: Daniel Teuchert Date: Fri, 31 Jan 2025 10:23:20 +0100 Subject: [PATCH] Modify rule S4036: Fix Code Example --- 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 320c50b4066..6232316b515 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[]