Skip to content

Commit

Permalink
chore: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
vmihailenco committed Feb 18, 2022
1 parent ed1b5bb commit b096f43
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion command.go
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,8 @@ func (cmd *baseCmd) stringArg(pos int) string {
case string:
return v
default:
return fmt.Sprintf("%v", v)
// TODO: consider using appendArg
return fmt.Sprint(v)
}
}

Expand Down

0 comments on commit b096f43

Please sign in to comment.