From 7f1a21fd5cef959ac5fe40931618a35c23fbbd2e Mon Sep 17 00:00:00 2001 From: Sam Schenkman-Moore Date: Sat, 10 Apr 2021 11:05:48 -0400 Subject: [PATCH] Update (miscopied?) description of command MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This looked like an artifact of a copy/paste sorta situation: the current description for the `rank` command has the description for the `block` command. I ad libbed a new description that is hopefully at least _more_ correct 😄 --- jiracmd/rank.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jiracmd/rank.go b/jiracmd/rank.go index 2a17dc4..1862ea5 100644 --- a/jiracmd/rank.go +++ b/jiracmd/rank.go @@ -24,7 +24,7 @@ func CmdRankRegistry() *jiracli.CommandRegistryEntry { opts := RankOptions{} return &jiracli.CommandRegistryEntry{ - "Mark issues as blocker", + "Change ranking of issue", func(fig *figtree.FigTree, cmd *kingpin.CmdClause) error { jiracli.LoadConfigs(cmd, fig, &opts) return CmdRankUsage(cmd, &opts)