X Tutup
Skip to content

Commit 3c32507

Browse files
committed
Consistent use of quotes to delineate commands to be run
1 parent aa72463 commit 3c32507

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pkg/cmd/root/help.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ func rootHelpFunc(command *cobra.Command, args []string) {
144144
helpEntries = append(helpEntries, helpEntry{"ENVIRONMENT VARIABLES", command.Annotations["help:environment"]})
145145
}
146146
helpEntries = append(helpEntries, helpEntry{"LEARN MORE", `
147-
Use "gh <command> <subcommand> --help" for more information about a command.
147+
Use 'gh <command> <subcommand> --help' for more information about a command.
148148
Read the manual at https://cli.github.com/manual`})
149149
if _, ok := command.Annotations["help:feedback"]; ok {
150150
helpEntries = append(helpEntries, helpEntry{"FEEDBACK", command.Annotations["help:feedback"]})

pkg/cmd/root/root.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ func NewCmdRoot(f *cmdutil.Factory, version, buildDate string) *cobra.Command {
4141
`),
4242
Annotations: map[string]string{
4343
"help:feedback": heredoc.Doc(`
44-
Open an issue using gh issue create -R cli/cli
44+
Open an issue using 'gh issue create -R cli/cli'
4545
`),
4646
"help:environment": heredoc.Doc(`
4747
See 'gh help environment' for the list of supported environment variables.

0 commit comments

Comments
 (0)
X Tutup