From 4c012f6dcd9546820e378d0bdda4d8fc772cdfea Mon Sep 17 00:00:00 2001 From: Steven Roose Date: Mon, 6 Nov 2017 09:28:49 -0500 Subject: Add uintSlice and boolSlice to name prettifier (#150) --- flag.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'flag.go') diff --git a/flag.go b/flag.go index 73c237b..28538c0 100644 --- a/flag.go +++ b/flag.go @@ -568,6 +568,10 @@ func UnquoteUsage(flag *Flag) (name string, usage string) { name = "strings" case "intSlice": name = "ints" + case "uintSlice": + name = "uints" + case "boolSlice": + name = "bools" } return -- cgit v1.2.3