From f4765bed1b1ad121a81b35878fdb866354b5e34a Mon Sep 17 00:00:00 2001 From: Chadi Laoulaou <49269946+Chadiii@users.noreply.github.com> Date: Thu, 30 Mar 2023 05:38:47 +0200 Subject: [PATCH] fix: typo in description of the filter flag in analyze command (#147) Signed-off-by: Chadi Laoulaou --- cmd/analyze/analyze.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/analyze/analyze.go b/cmd/analyze/analyze.go index cc7362a18a..aeeb77f976 100644 --- a/cmd/analyze/analyze.go +++ b/cmd/analyze/analyze.go @@ -154,7 +154,7 @@ func init() { // no cache flag AnalyzeCmd.Flags().BoolVarP(&nocache, "no-cache", "c", false, "Do not use cached data") // array of strings flag - AnalyzeCmd.Flags().StringSliceVarP(&filters, "filter", "f", []string{}, "Filter for these analzyers (e.g. Pod,PersistentVolumeClaim,Service,ReplicaSet)") + AnalyzeCmd.Flags().StringSliceVarP(&filters, "filter", "f", []string{}, "Filter for these analyzers (e.g. Pod, PersistentVolumeClaim, Service, ReplicaSet)") // explain flag AnalyzeCmd.Flags().BoolVarP(&explain, "explain", "e", false, "Explain the problem to me") // add flag for backend