From 8ce64d2a7f587809db3547d64c27f77b651591bf Mon Sep 17 00:00:00 2001 From: Clint Modien Date: Thu, 6 Jan 2022 09:45:11 -0800 Subject: [PATCH] Fixes #296 Spelling error Namescape should be Namespace --- resultshandling/printer/summeryhelpers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resultshandling/printer/summeryhelpers.go b/resultshandling/printer/summeryhelpers.go index dee39235..a428b39d 100644 --- a/resultshandling/printer/summeryhelpers.go +++ b/resultshandling/printer/summeryhelpers.go @@ -22,7 +22,7 @@ func groupByNamespaceOrKind(resources []WorkloadSummary, status func(workloadSum case workloadinterface.TypeWorkloadObject: ns := "" if resources[i].resource.GetNamespace() != "" { - ns = "Namescape " + resources[i].resource.GetNamespace() + ns = "Namespace " + resources[i].resource.GetNamespace() } if r, ok := mapResources[ns]; ok { r = append(r, resources[i])