Skip to content

Commit

Permalink
update help message
Browse files Browse the repository at this point in the history
  • Loading branch information
zhuah committed Apr 16, 2020
1 parent abc2168 commit 7b3389b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions help.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,13 @@ func (w *writer) arglist(f *FlagSet) string {
)
if flagCount != 0 {
if setCount != 0 {
arglist = "[FLAG|SET]..."
arglist = "[FLAG|COMMAND]..."
} else {
arglist = "[FLAG]..."
}
} else {
if setCount != 0 {
arglist = "[SET]..."
arglist = "[COMMAND]..."
}
}
return arglist
Expand Down

0 comments on commit 7b3389b

Please sign in to comment.