From a9e430e9bc1b7cba6591c9762a529e217b1ac873 Mon Sep 17 00:00:00 2001 From: Andy Feller Date: Fri, 1 Dec 2023 09:16:51 -0500 Subject: [PATCH] Fix lint warning --- pkg/cmd/root/help.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkg/cmd/root/help.go b/pkg/cmd/root/help.go index 8cb0d5b82..f6f3af775 100644 --- a/pkg/cmd/root/help.go +++ b/pkg/cmd/root/help.go @@ -172,8 +172,9 @@ func rootHelpFunc(f *cmdutil.Factory, command *cobra.Command, args []string) { helpEntries = append(helpEntries, helpEntry{"ENVIRONMENT VARIABLES", command.Annotations["help:environment"]}) } helpEntries = append(helpEntries, helpEntry{"LEARN MORE", heredoc.Docf(` -Use %[1]sgh --help%[1]s for more information about a command. -Read the manual at https://cli.github.com/manual`,"`")}) + Use %[1]sgh --help%[1]s for more information about a command. + Read the manual at https://cli.github.com/manual + `,"`")}) out := f.IOStreams.Out for _, e := range helpEntries {