Skip to content

Commit 4c53371

Browse files
committed
Fix commands help text after rebase
1 parent f3a568a commit 4c53371

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

internal/commands/commands.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ type flagInfo struct {
2424
Description string `json:"description"`
2525
}
2626

27-
// commandsCmd emits a flat catalog of all commands with their flags.
27+
// commandsCmd emits a catalog of all commands with their flags.
2828
var commandsCmd = &cobra.Command{
2929
Use: "commands",
3030
Short: "List all available commands",
31-
Long: "Lists all available commands with their flags in JSON format.",
31+
Long: "Lists all available commands. Use --json for a structured command catalog.",
3232
RunE: func(cmd *cobra.Command, args []string) error {
3333
catalog := walkCommands(rootCmd, "fizzy")
3434
printSuccess(catalog)

0 commit comments

Comments
 (0)