From 6d20283a7a66fa6622fd30cf1ca5e2b5439826fd Mon Sep 17 00:00:00 2001 From: Corey Johnson Date: Wed, 22 Apr 2020 13:49:42 -0700 Subject: [PATCH] Move feedback to the bottom --- command/root.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/command/root.go b/command/root.go index 9c9b5e692..fbbb1b091 100644 --- a/command/root.go +++ b/command/root.go @@ -235,17 +235,17 @@ func rootHelpFunc(command *cobra.Command, s []string) { gh [subcommand] [flags]`}, {"CORE COMMANDS", strings.Join(coreCommands, "\n")}, {"ADDITIONAL COMMANDS", strings.Join(additionalCommands, "\n")}, - {"FEEDBACK", ` - Fill out our feedback form - Open an issue using “gh issue create -R cli/cli`}, - {"FLAGS", strings.TrimRight(command.LocalFlags().FlagUsages(), "\n")}, {"EXAMPLES", ` $ cd your-repository $ gh pr list $ gh pr checkout 321`}, {"LEARN MORE", ` Use "gh --help" for more information about a command. - Read the manual at `}, + Read the manual at `}, + {"FEEDBACK", ` + Fill out our feedback form + Open an issue using “gh issue create -R cli/cli`}, + {"FLAGS", strings.TrimRight(command.LocalFlags().FlagUsages(), "\n")}, } out := colorableOut(command)