From 71bdf81f5a65dc253482cb727c2ae973ae3b3830 Mon Sep 17 00:00:00 2001 From: Tyler Davis Date: Wed, 28 Jun 2017 10:10:11 -0700 Subject: [PATCH] sigh... fix one more named parameter issue --- funcs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/funcs.go b/funcs.go index 42023e2..2274415 100644 --- a/funcs.go +++ b/funcs.go @@ -29,4 +29,4 @@ type FlagStringFunc func(Flag) string // ExitErrHandlerFunc is executed if provided in order to handle ExitError values // returned by Actions and Before/After functions. -type ExitErrHandlerFunc func(context *Context, error) +type ExitErrHandlerFunc func(context *Context, err error)