Skip to content

Commit

Permalink
fix(dumpmd): fix breakage from #344
Browse files Browse the repository at this point in the history
  • Loading branch information
abhinav committed Aug 14, 2024
1 parent d34bc88 commit b7a9571
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dumpmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ func dumpShorthands(w io.Writer, shorts *shorthand.BuiltinSource) {

var t table
t.appendHeaders("Shorthand", "Long form")
for _, key := range keys {
for key := range keys {
cmd := cmdFullName(shorts.Node(key))
link := fmt.Sprintf("[%v](/cli/reference.md#%v)", cmd, strings.ReplaceAll(cmd, " ", "-"))
t.addRow("gs "+key, link)
Expand Down

0 comments on commit b7a9571

Please sign in to comment.