From df287f2f398bdbec6468eb7a7ac2a4f5a25d5a08 Mon Sep 17 00:00:00 2001 From: Sam Whited Date: Wed, 9 Jun 2021 08:57:32 -0400 Subject: [PATCH] cli: update documentation for Run function Signed-off-by: Sam Whited --- cmd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd.go b/cmd.go index 571c02d..2fa4280 100644 --- a/cmd.go +++ b/cmd.go @@ -49,7 +49,7 @@ type Command struct { // The action to take when this command is executed. The args will be the // remaining command line args after all flags have been parsed. - // Run is normally called by a CommandSet and shouldn't be called directly. + // Run is normally called by the Exec method and shouldn't be called directly. Run func(c *Command, args ...string) error }