From 7bab206a70d15051467d89a48268b06f3bde65ca Mon Sep 17 00:00:00 2001 From: Indradhanush Gupta Date: Tue, 30 Oct 2018 13:54:56 -0700 Subject: [PATCH] command: fix typo in docstring of InheritedFlags (#779) --- command.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command.go b/command.go index 34d1bf36..768f05d3 100644 --- a/command.go +++ b/command.go @@ -1335,7 +1335,7 @@ func (c *Command) LocalFlags() *flag.FlagSet { return c.lflags } -// InheritedFlags returns all flags which were inherited from parents commands. +// InheritedFlags returns all flags which were inherited from parent commands. func (c *Command) InheritedFlags() *flag.FlagSet { c.mergePersistentFlags()