From 80962ca0c6bf6f4ea53b1badfadf85a37367729a Mon Sep 17 00:00:00 2001 From: Jamie Tanna Date: Wed, 1 Jun 2022 22:05:23 +0100 Subject: [PATCH] Add missing space between words (#589) Otherwise it's harder to copy-paste the path to the configuration. Co-authored-by: Marcin Romaszewicz <47459980+deepmap-marcinr@users.noreply.github.com> --- cmd/oapi-codegen/oapi-codegen.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/oapi-codegen/oapi-codegen.go b/cmd/oapi-codegen/oapi-codegen.go index fc1b6cff4..2d5c0f990 100644 --- a/cmd/oapi-codegen/oapi-codegen.go +++ b/cmd/oapi-codegen/oapi-codegen.go @@ -258,7 +258,7 @@ func updateConfigFromFlags(cfg configuration) (configuration, error) { if len(unsupportedFlags) > 0 { return configuration{}, fmt.Errorf("flags %s aren't supported in "+ - "new config style, please use -old-config-style or update your configuration", + "new config style, please use -old-config-style or update your configuration ", strings.Join(unsupportedFlags, ", ")) }