From 4f3d0e5f7bd47ce0dab19e8dde5abe18702a3974 Mon Sep 17 00:00:00 2001 From: "yuuji.yaginuma" Date: Fri, 18 Sep 2020 14:21:02 +0900 Subject: [PATCH] Fix short description of `gist` The `gist` command allows doing other operations than `create`(like `edit`, `view`, etc). So I think that `manage` is more appropriate to the description. --- pkg/cmd/gist/gist.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/gist/gist.go b/pkg/cmd/gist/gist.go index 029fab588..41808f4b4 100644 --- a/pkg/cmd/gist/gist.go +++ b/pkg/cmd/gist/gist.go @@ -13,7 +13,7 @@ import ( func NewCmdGist(f *cmdutil.Factory) *cobra.Command { cmd := &cobra.Command{ Use: "gist", - Short: "Create gists", + Short: "Manage gists", Long: `Work with GitHub gists.`, Annotations: map[string]string{ "IsCore": "true",