From b5d4a04c7fb1c7de98d491ee5af9130006fe06c6 Mon Sep 17 00:00:00 2001 From: Ashwani Date: Sun, 13 Jun 2021 19:06:57 +0530 Subject: [PATCH] Resolved a grammatical error (#1281) --- funcs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/funcs.go b/funcs.go index 474c48f..842b4aa 100644 --- a/funcs.go +++ b/funcs.go @@ -17,7 +17,7 @@ type ActionFunc func(*Context) error // CommandNotFoundFunc is executed if the proper command cannot be found type CommandNotFoundFunc func(*Context, string) -// OnUsageErrorFunc is executed if an usage error occurs. This is useful for displaying +// OnUsageErrorFunc is executed if a usage error occurs. This is useful for displaying // customized usage error messages. This function is able to replace the // original error messages. If this function is not set, the "Incorrect usage" // is displayed and the execution is interrupted.