From ee27c66952a79dd0358a340cbd9f1a9b673e61f2 Mon Sep 17 00:00:00 2001 From: Evgenii Stratonikov Date: Tue, 28 Jun 2022 09:05:02 +0300 Subject: [PATCH] [#1555] util/gendoc: Remove trailing dot from the help message Signed-off-by: Evgenii Stratonikov --- pkg/util/gendoc/gendoc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/util/gendoc/gendoc.go b/pkg/util/gendoc/gendoc.go index 59c36fd3..23d62d09 100644 --- a/pkg/util/gendoc/gendoc.go +++ b/pkg/util/gendoc/gendoc.go @@ -28,7 +28,7 @@ const ( func Command(rootCmd *cobra.Command) *cobra.Command { gendocCmd := &cobra.Command{ Use: "gendoc ", - Short: "Generate documentation for this command.", + Short: "Generate documentation for this command", Long: `Generate documentation for this command. If the template is not provided, builtin cobra generator is used and each subcommand is placed in a separate file in the same directory.