Consistent use of quotes to delineate commands to be run
This commit is contained in:
parent
aa72463114
commit
3c32507a13
2 changed files with 2 additions and 2 deletions
|
|
@ -144,7 +144,7 @@ func rootHelpFunc(command *cobra.Command, args []string) {
|
|||
helpEntries = append(helpEntries, helpEntry{"ENVIRONMENT VARIABLES", command.Annotations["help:environment"]})
|
||||
}
|
||||
helpEntries = append(helpEntries, helpEntry{"LEARN MORE", `
|
||||
Use "gh <command> <subcommand> --help" for more information about a command.
|
||||
Use 'gh <command> <subcommand> --help' for more information about a command.
|
||||
Read the manual at https://cli.github.com/manual`})
|
||||
if _, ok := command.Annotations["help:feedback"]; ok {
|
||||
helpEntries = append(helpEntries, helpEntry{"FEEDBACK", command.Annotations["help:feedback"]})
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@ func NewCmdRoot(f *cmdutil.Factory, version, buildDate string) *cobra.Command {
|
|||
`),
|
||||
Annotations: map[string]string{
|
||||
"help:feedback": heredoc.Doc(`
|
||||
Open an issue using “gh issue create -R cli/cli”
|
||||
Open an issue using 'gh issue create -R cli/cli'
|
||||
`),
|
||||
"help:environment": heredoc.Doc(`
|
||||
See 'gh help environment' for the list of supported environment variables.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue