diff options
| author | Rick Olson <[email protected]> | 2015-08-14 16:51:04 -0600 |
|---|---|---|
| committer | Rick Olson <[email protected]> | 2015-08-14 16:51:04 -0600 |
| commit | cc0d9fc856cdcefcece2a368326aa3827a862561 (patch) | |
| tree | da80d4b51eaefedfc137f02bd364cf0951ae5404 /string_slice_test.go | |
| parent | 4869ec2ae0628354eaac5bf88fccf9a7265ae475 (diff) | |
typo
Diffstat (limited to 'string_slice_test.go')
| -rw-r--r-- | string_slice_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/string_slice_test.go b/string_slice_test.go index e8847d5..97602de 100644 --- a/string_slice_test.go +++ b/string_slice_test.go @@ -12,13 +12,13 @@ import ( func setUpSSFlagSet(ssp *[]string) *FlagSet { f := NewFlagSet("test", ContinueOnError) - f.StringSliceVar(ssp, "ss", []string{}, "Command seperated list!") + f.StringSliceVar(ssp, "ss", []string{}, "Command separated list!") return f } func setUpSSFlagSetWithDefault(ssp *[]string) *FlagSet { f := NewFlagSet("test", ContinueOnError) - f.StringSliceVar(ssp, "ss", []string{"default", "values"}, "Command seperated list!") + f.StringSliceVar(ssp, "ss", []string{"default", "values"}, "Command separated list!") return f } |
