From 57d60cd57026a7f5a90b32f854a4b3674ca1b2ae Mon Sep 17 00:00:00 2001 From: Wlad Gumenyuk <50965068+wgumenyuk@users.noreply.github.com> Date: Sun, 27 Dec 2020 18:30:11 +0100 Subject: [PATCH] Fix: typo Corrected "eror" to "error" on line 331. --- app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.go b/app.go index 779733e..2c97251 100644 --- a/app.go +++ b/app.go @@ -328,7 +328,7 @@ func (a *App) RunContext(ctx context.Context, arguments []string) (err error) { // RunAndExitOnError calls .Run() and exits non-zero if an error was returned // // Deprecated: instead you should return an error that fulfills cli.ExitCoder -// to cli.App.Run. This will cause the application to exit with the given eror +// to cli.App.Run. This will cause the application to exit with the given error // code in the cli.ExitCoder func (a *App) RunAndExitOnError() { if err := a.Run(os.Args); err != nil {