From a8aeec2fbf9ff643665907b14624421577eb1478 Mon Sep 17 00:00:00 2001 From: Dan Anglin Date: Wed, 3 Jul 2024 13:34:27 +0100 Subject: [PATCH] fix: update description for the vote flag --- internal/executor/add.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/executor/add.go b/internal/executor/add.go index 75fc7d6..46f116d 100644 --- a/internal/executor/add.go +++ b/internal/executor/add.go @@ -47,7 +47,7 @@ func NewAddExecutor(printer *printer.Printer, config *config.Config, name, summa addExe.StringVar(&addExe.content, flagContent, "", "The content of the resource") addExe.StringVar(&addExe.pollID, flagPollID, "", "The ID of the poll") addExe.Var(&addExe.accountNames, flagAccountName, "The name of the account") - addExe.Var(&addExe.choices, flagVote, "Your vote") + addExe.Var(&addExe.choices, flagVote, "Add a vote to an option in a poll") addExe.Usage = commandUsageFunc(name, summary, addExe.FlagSet)