9
9
10
10
var CamelCaseCmd = & cobra.Command {
11
11
Use : "camel-case [text]" ,
12
- Short : "Coverts string to camel case" ,
12
+ Short : "Coverts string to camel case (fooBar) " ,
13
13
Args : cobra .ExactArgs (1 ),
14
14
DisableFlagsInUseLine : true ,
15
15
Run : func (cmd * cobra.Command , args []string ) {
@@ -19,7 +19,7 @@ var CamelCaseCmd = &cobra.Command{
19
19
20
20
var KebabCaseCmd = & cobra.Command {
21
21
Use : "kebab-case [text]" ,
22
- Short : "Coverts string to kebab case" ,
22
+ Short : "Coverts string to kebab case (foo-bar) " ,
23
23
Args : cobra .ExactArgs (1 ),
24
24
DisableFlagsInUseLine : true ,
25
25
Run : func (cmd * cobra.Command , args []string ) {
@@ -29,7 +29,7 @@ var KebabCaseCmd = &cobra.Command{
29
29
30
30
var LowerCaseCmd = & cobra.Command {
31
31
Use : "lower-case [text]" ,
32
- Short : "Coverts string to lower case" ,
32
+ Short : "Coverts string to lower case (foo bar) " ,
33
33
Args : cobra .ExactArgs (1 ),
34
34
DisableFlagsInUseLine : true ,
35
35
Run : func (cmd * cobra.Command , args []string ) {
@@ -39,7 +39,7 @@ var LowerCaseCmd = &cobra.Command{
39
39
40
40
var SnakeCaseCmd = & cobra.Command {
41
41
Use : "snake-case [text]" ,
42
- Short : "Coverts string to snake case" ,
42
+ Short : "Coverts string to snake case (foo_bar) " ,
43
43
Args : cobra .ExactArgs (1 ),
44
44
DisableFlagsInUseLine : true ,
45
45
Run : func (cmd * cobra.Command , args []string ) {
@@ -49,7 +49,7 @@ var SnakeCaseCmd = &cobra.Command{
49
49
50
50
var StartCaseCmd = & cobra.Command {
51
51
Use : "start-case [text]" ,
52
- Short : "Coverts string to start case" ,
52
+ Short : "Coverts string to start case (Foo Bar) " ,
53
53
Args : cobra .ExactArgs (1 ),
54
54
DisableFlagsInUseLine : true ,
55
55
Run : func (cmd * cobra.Command , args []string ) {
@@ -59,7 +59,7 @@ var StartCaseCmd = &cobra.Command{
59
59
60
60
var UpperCaseCmd = & cobra.Command {
61
61
Use : "upper-case [text]" ,
62
- Short : "Coverts string to upper case" ,
62
+ Short : "Coverts string to upper case (FOO BAR) " ,
63
63
Args : cobra .ExactArgs (1 ),
64
64
DisableFlagsInUseLine : true ,
65
65
Run : func (cmd * cobra.Command , args []string ) {
0 commit comments