@@ -84,7 +84,7 @@ func (f *FlagSet) GetStringSlice(name string) ([]string, error) {
84
84
// The argument p points to a []string variable in which to store the value of the flag.
85
85
// Compared to StringArray flags, StringSlice flags take comma-separated value as arguments and split them accordingly.
86
86
// For example:
87
- // --ss="v1,v2" -ss="v3"
87
+ // --ss="v1,v2" -- ss="v3"
88
88
// will result in
89
89
// []string{"v1", "v2", "v3"}
90
90
func (f * FlagSet ) StringSliceVar (p * []string , name string , value []string , usage string ) {
@@ -100,7 +100,7 @@ func (f *FlagSet) StringSliceVarP(p *[]string, name, shorthand string, value []s
100
100
// The argument p points to a []string variable in which to store the value of the flag.
101
101
// Compared to StringArray flags, StringSlice flags take comma-separated value as arguments and split them accordingly.
102
102
// For example:
103
- // --ss="v1,v2" -ss="v3"
103
+ // --ss="v1,v2" -- ss="v3"
104
104
// will result in
105
105
// []string{"v1", "v2", "v3"}
106
106
func StringSliceVar (p * []string , name string , value []string , usage string ) {
@@ -116,7 +116,7 @@ func StringSliceVarP(p *[]string, name, shorthand string, value []string, usage
116
116
// The return value is the address of a []string variable that stores the value of the flag.
117
117
// Compared to StringArray flags, StringSlice flags take comma-separated value as arguments and split them accordingly.
118
118
// For example:
119
- // --ss="v1,v2" -ss="v3"
119
+ // --ss="v1,v2" -- ss="v3"
120
120
// will result in
121
121
// []string{"v1", "v2", "v3"}
122
122
func (f * FlagSet ) StringSlice (name string , value []string , usage string ) * []string {
@@ -136,7 +136,7 @@ func (f *FlagSet) StringSliceP(name, shorthand string, value []string, usage str
136
136
// The return value is the address of a []string variable that stores the value of the flag.
137
137
// Compared to StringArray flags, StringSlice flags take comma-separated value as arguments and split them accordingly.
138
138
// For example:
139
- // --ss="v1,v2" -ss="v3"
139
+ // --ss="v1,v2" -- ss="v3"
140
140
// will result in
141
141
// []string{"v1", "v2", "v3"}
142
142
func StringSlice (name string , value []string , usage string ) * []string {
0 commit comments