From 8fe5561ce707d2b32ad3c0daa3a384d21535b0a1 Mon Sep 17 00:00:00 2001 From: Cao Shufeng Date: Wed, 13 Jun 2018 09:07:34 +0800 Subject: [PATCH] [trivial] fix option help message. s/andif/and if/ Kubernetes-commit: 42b93ab7244765dd744257a793b0b9c138146bb3 --- pkg/server/options/audit.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/server/options/audit.go b/pkg/server/options/audit.go index 100275920..ad4d65b11 100644 --- a/pkg/server/options/audit.go +++ b/pkg/server/options/audit.go @@ -355,7 +355,7 @@ func (o *AuditTruncateOptions) AddFlags(pluginName string, fs *pflag.FlagSet) { "it is split into several batches of smaller size.") fs.Int64Var(&o.TruncateConfig.MaxEventSize, fmt.Sprintf("audit-%s-truncate-max-event-size", pluginName), o.TruncateConfig.MaxEventSize, "Maximum size of the audit event sent to the underlying backend. "+ - "If the size of an event is greater than this number, first request and response are removed, and"+ + "If the size of an event is greater than this number, first request and response are removed, and "+ "if this doesn't reduce the size enough, event is discarded.") }