Skip to content

Commit 87569ee

Browse files
committed
💬 Improve long help message
1 parent 98a61ae commit 87569ee

File tree

15 files changed

+23
-23
lines changed

15 files changed

+23
-23
lines changed

cmd/caption/caption.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var (
2929
var captionCmd = &cobra.Command{
3030
Use: "caption",
3131
Short: "Manipulate YouTube captions",
32-
Long: "Manipulate YouTube captions, such as list, update, etc.",
32+
Long: "List, insert, update, download, or delete YouTube captions",
3333
Run: func(cmd *cobra.Command, args []string) {
3434
cmd.Help()
3535
},

cmd/channelBanner/channelBanner.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ var (
1515

1616
var channelBannerCmd = &cobra.Command{
1717
Use: "channelBanner",
18-
Short: "Insert Youtube channelBanner",
19-
Long: "Insert Youtube channelBanner",
18+
Short: "Insert Youtube channel banner",
19+
Long: "Insert Youtube channel banner",
2020
Run: func(cmd *cobra.Command, args []string) {
2121
cmd.Help()
2222
},

cmd/channelSection/channelSection.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ var (
1717

1818
var channelSectionCmd = &cobra.Command{
1919
Use: "channelSection",
20-
Short: "Manipulate channel section",
21-
Long: "List or delete channel section",
20+
Short: "Manipulate YouTube channel sections",
21+
Long: "List or delete YouTube channel sections",
2222
Run: func(cmd *cobra.Command, args []string) {
2323
cmd.Help()
2424
},

cmd/comment/comment.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ var (
2525
var commentCmd = &cobra.Command{
2626
Use: "comment",
2727
Short: "Manipulate YouTube comments",
28-
Long: "Manipulate YouTube comments, such as insert, update, etc.",
28+
Long: "List, insert, update, mark as spam, set moderation status, or delete YouTube comments",
2929
Run: func(cmd *cobra.Command, args []string) {
3030
cmd.Help()
3131
},

cmd/i18nLanguage/i18nLanguage.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ var (
1313

1414
var i18nLanguageCmd = &cobra.Command{
1515
Use: "i18nLanguage",
16-
Short: "List YouTube i18nLanguages",
17-
Long: "List YouTube i18nLanguages",
16+
Short: "List YouTube i18n languages",
17+
Long: "List YouTube i18n languages",
1818
Run: func(cmd *cobra.Command, args []string) {
1919
cmd.Help()
2020
},

cmd/i18nRegion/i18nRegion.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ var (
1313

1414
var i18nRegionCmd = &cobra.Command{
1515
Use: "i18nRegion",
16-
Short: "List YouTube i18nRegions",
17-
Long: "List YouTube i18nRegions",
16+
Short: "List YouTube i18n regions",
17+
Long: "List YouTube i18n regions",
1818
Run: func(cmd *cobra.Command, args []string) {
1919
cmd.Help()
2020
},

cmd/playlist/playlist.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ var (
2727
var playlistCmd = &cobra.Command{
2828
Use: "playlist",
2929
Short: "Manipulate YouTube playlists",
30-
Long: "Manipulate YouTube playlists, such as insert, update, etc.",
30+
Long: "List, insert, update, or delete YouTube playlists",
3131
Run: func(cmd *cobra.Command, args []string) {
3232
cmd.Help()
3333
},

cmd/playlistImage/playlistImage.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ var (
2525
var playlistImageCmd = &cobra.Command{
2626
Use: "playlistImage",
2727
Short: "Manipulate YouTube playlist images",
28-
Long: "List, insert, update, or delete YouTube playlist images.",
28+
Long: "List, insert, update, or delete YouTube playlist images",
2929
Run: func(cmd *cobra.Command, args []string) {
3030
cmd.Help()
3131
},

cmd/playlistItem/playlistItem.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ var (
2727
var playlistItemCmd = &cobra.Command{
2828
Use: "playlistItem",
2929
Short: "Manipulate YouTube playlist items",
30-
Long: "Manipulate YouTube playlist items, such as insert, update, etc.",
30+
Long: "List, insert, update, or delete YouTube playlist items",
3131
Run: func(cmd *cobra.Command, args []string) {
3232
cmd.Help()
3333
},

cmd/search/search.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ var (
4141

4242
var searchCmd = &cobra.Command{
4343
Use: "search",
44-
Short: "Search for Youtube resources",
45-
Long: "Search for Youtube resources",
44+
Short: "Search for YouTube resources",
45+
Long: "Search for YouTube resources",
4646
Run: func(cmd *cobra.Command, args []string) {
4747
cmd.Help()
4848
},

0 commit comments

Comments
 (0)