Skip to content

Commit

Permalink
fix(logic): fix the description inversion of the flags
Browse files Browse the repository at this point in the history
  • Loading branch information
ccamel committed Jan 17, 2023
1 parent 9103ba5 commit 5117430
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x/logic/client/cli/query_ask.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ query).`,
&program,
"program",
"",
`reads the program from the given filename or from stdin if "-" is passed as the filename.`)
`reads the program from the given string.`)
cmd.Flags().StringVar(
&programFile,
"program-file",
"",
`reads the program from the given string.`)
`reads the program from the given filename or from stdin if "-" is passed as the filename.`)
cmd.MarkFlagsMutuallyExclusive("program", "program-file")

flags.AddQueryFlagsToCmd(cmd)
Expand Down

0 comments on commit 5117430

Please sign in to comment.