@@ -38,7 +38,7 @@ func init() {
38
38
& channelId , "channelId" , "c" , "" , "Returns the comment threads for all the channel comments" ,
39
39
)
40
40
listCmd .Flags ().Int64VarP (
41
- & maxResults , "maxResults" , "n" , 5 , "Specifies the maximum number of items that should be returned" ,
41
+ & maxResults , "maxResults" , "n" , 5 , "The maximum number of items that should be returned" ,
42
42
)
43
43
listCmd .Flags ().StringVarP (
44
44
& moderationStatus , "moderationStatus" , "m" , "" , "published(default), heldForReview, likelySpam or rejected" ,
@@ -47,6 +47,6 @@ func init() {
47
47
listCmd .Flags ().StringVarP (& searchTerms , "searchTerms" , "s" , "" , "Search terms" )
48
48
listCmd .Flags ().StringVarP (& textFormat , "textFormat" , "t" , "" , "textFormatUnspecified or html(default)" )
49
49
listCmd .Flags ().StringVarP (& videoId , "videoId" , "v" , "" , "Returns the comment threads of the specified video" )
50
- listCmd .Flags ().StringSliceVarP (& parts , "parts" , "p" , []string {"id" , "snippet" }, "Parts to be fetched " )
50
+ listCmd .Flags ().StringSliceVarP (& parts , "parts" , "p" , []string {"id" , "snippet" }, "Comma separated parts " )
51
51
listCmd .Flags ().StringVarP (& output , "output" , "o" , "" , "json, yaml or silent" )
52
52
}
0 commit comments