aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRick Olson <[email protected]>2015-08-14 16:51:04 -0600
committerRick Olson <[email protected]>2015-08-14 16:51:04 -0600
commitcc0d9fc856cdcefcece2a368326aa3827a862561 (patch)
treeda80d4b51eaefedfc137f02bd364cf0951ae5404
parent4869ec2ae0628354eaac5bf88fccf9a7265ae475 (diff)
typo
-rw-r--r--int_slice_test.go4
-rw-r--r--string_slice_test.go4
2 files changed, 4 insertions, 4 deletions
diff --git a/int_slice_test.go b/int_slice_test.go
index 2b7f68d..13a6551 100644
--- a/int_slice_test.go
+++ b/int_slice_test.go
@@ -13,13 +13,13 @@ import (
func setUpISFlagSet(isp *[]int) *FlagSet {
f := NewFlagSet("test", ContinueOnError)
- f.IntSliceVar(isp, "is", []int{}, "Command seperated list!")
+ f.IntSliceVar(isp, "is", []int{}, "Command separated list!")
return f
}
func setUpISFlagSetWithDefault(isp *[]int) *FlagSet {
f := NewFlagSet("test", ContinueOnError)
- f.IntSliceVar(isp, "is", []int{0, 1}, "Command seperated list!")
+ f.IntSliceVar(isp, "is", []int{0, 1}, "Command separated list!")
return f
}
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
}