From 3a7eb146bae5ebf9be598570234cde56c82d16cc Mon Sep 17 00:00:00 2001 From: Shamus Taylor Date: Fri, 2 Feb 2018 00:04:56 -0600 Subject: [PATCH] fix grammatical error in command.go (#626) --- command.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command.go b/command.go index 5fefb58d..3fd77667 100644 --- a/command.go +++ b/command.go @@ -1245,7 +1245,7 @@ func (c *Command) HasParent() bool { return c.parent != nil } -// GlobalNormalizationFunc returns the global normalization function or nil if doesn't exists. +// GlobalNormalizationFunc returns the global normalization function or nil if it doesn't exist. func (c *Command) GlobalNormalizationFunc() func(f *flag.FlagSet, name string) flag.NormalizedName { return c.globNormFunc }