Skip to content

Commit

Permalink
cmd/set-param: fix spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
joshi4 committed Jun 14, 2024
1 parent 81e24bb commit b78fbf1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cmd/internal/set-param.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ var subcommandCmd = &cobra.Command{
fields := ParamFields(ctx, params)

var fs []huh.Field
note := huh.NewNote().Title(command).Description("Set Parameteres")
description := "Set parameters for the command"
note := huh.NewNote().Title(command).Description(description)
fs = append(fs, note)
for _, param := range params {
fs = append(fs, fields[param])
Expand Down

0 comments on commit b78fbf1

Please sign in to comment.