From 7651aa05a63f72d59f84211ce7382aad3cdb7139 Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Thu, 28 Apr 2016 11:09:33 -0400 Subject: [PATCH] TRIVIAL specify *return* signature in deprecation message --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4830a80..1bf2212 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,8 +26,8 @@ produce a non-zero exit from `App.Run` `cli.App.RunAndExitOnError`, which should now be done by returning an error that fulfills `cli.ExitCoder` to `cli.App.Run`. - the legacy signature for -`cli.App.Action` of `func(*cli.Context)`, which should now have a signature of -`func(*cli.Context) error`, as defined by `cli.ActionFunc`. +`cli.App.Action` of `func(*cli.Context)`, which should now have a return +signature of `func(*cli.Context) error`, as defined by `cli.ActionFunc`. ## [1.14.0] - 2016-04-03 (backfilled 2016-04-25) ### Added