From 753910d679860e11f12d273e128d3a6f9785fc41 Mon Sep 17 00:00:00 2001 From: Jamie Tanna Date: Mon, 23 May 2022 09:21:37 +0100 Subject: [PATCH] Add missing space between words Otherwise it's harder to copy-paste the path to the configuration. --- 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 fe43be6a84..1a10ae04bb 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-style-config or update your configuration", + "new config style, please use --old-style-config or update your configuration ", strings.Join(unsupportedFlags, ", ")) }