From 3518712fbb07bdd3ca42a34f4fb3f524d4bed21c Mon Sep 17 00:00:00 2001 From: Tim Smith Date: Wed, 8 Nov 2023 12:27:23 -0800 Subject: [PATCH] Be more clear on the CLI that we're showing compliance controls Controls alone is too generic of a heading. Signed-off-by: Tim Smith --- cli/reporter/print_compact.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/reporter/print_compact.go b/cli/reporter/print_compact.go index 079a9170..1936513f 100644 --- a/cli/reporter/print_compact.go +++ b/cli/reporter/print_compact.go @@ -395,7 +395,7 @@ func (r *defaultReporter) printAssetControls(resolved *policy.ResolvedPolicy, re return scores[i].QrId < scores[j].QrId }) - r.out.Write([]byte("Controls:" + NewLineCharacter)) + r.out.Write([]byte("Compliance controls:" + NewLineCharacter)) for i := range scores { score := scores[i]