From cc0d9fc856cdcefcece2a368326aa3827a862561 Mon Sep 17 00:00:00 2001 From: Rick Olson Date: Fri, 14 Aug 2015 16:51:04 -0600 Subject: typo --- int_slice_test.go | 4 ++-- string_slice_test.go | 4 ++-- 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 } -- cgit v1.2.3