From a755a95d01462c81aef0fc0635fcc0d138671bfb Mon Sep 17 00:00:00 2001 From: Uwe Dauernheim Date: Wed, 17 Feb 2016 14:51:16 +0000 Subject: [PATCH] Fix semantic typo --- command.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command.go b/command.go index bbf42ae..0153713 100644 --- a/command.go +++ b/command.go @@ -27,7 +27,7 @@ type Command struct { // An action to execute before any sub-subcommands are run, but after the context is ready // If a non-nil error is returned, no sub-subcommands are run Before func(context *Context) error - // An action to execute after any subcommands are run, but after the subcommand has finished + // An action to execute after any subcommands are run, but before the subcommand has finished // It is run even if Action() panics After func(context *Context) error // The function to call when this command is invoked