Skip to content

Commit

Permalink
Merge pull request #8479 from muzimuzhi/docs/backquote-gh-config
Browse files Browse the repository at this point in the history
Backquote settings in `gh-config` docs
  • Loading branch information
andyfeller committed Jan 10, 2024
2 parents 785a340 + c73f41b commit e9fabfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cmd/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ func NewCmdConfig(f *cmdutil.Factory) *cobra.Command {
longDoc.WriteString("Display or change configuration settings for gh.\n\n")
longDoc.WriteString("Current respected settings:\n")
for _, co := range config.ConfigOptions() {
longDoc.WriteString(fmt.Sprintf("- %s: %s", co.Key, co.Description))
longDoc.WriteString(fmt.Sprintf("- `%s`: %s", co.Key, co.Description))
if co.DefaultValue != "" {
longDoc.WriteString(fmt.Sprintf(" (default: %q)", co.DefaultValue))
}
Expand Down

0 comments on commit e9fabfe

Please sign in to comment.