* Fixed typos
This commit is contained in:
parent
c462071a52
commit
66c1742012
6
app.go
6
app.go
@ -44,9 +44,9 @@ type App struct {
|
||||
Action func(context *Context)
|
||||
// Execute this function if the proper command cannot be found
|
||||
CommandNotFound func(context *Context, command string)
|
||||
// Execute this function if an usage error occurs. This is useful for displaying customized usage error messages.
|
||||
// This function is able to manipulate the original error in another.
|
||||
// If this function is not set the "Incorrect usage" is displayed and the execution is interrupted.
|
||||
// Execute this function, if an 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.
|
||||
OnUsageError func(context *Context, err error, isSubcommand bool) error
|
||||
// Compilation date
|
||||
Compiled time.Time
|
||||
|
@ -30,9 +30,9 @@ type Command struct {
|
||||
After func(context *Context) error
|
||||
// The function to call when this command is invoked
|
||||
Action func(context *Context)
|
||||
// Execute this function if an usage error occurs. This is useful for displaying customized usage error messages.
|
||||
// This function is able to manipulate the original error in another.
|
||||
// If this function is not set the "Incorrect usage" is displayed and the execution is interrupted.
|
||||
// Execute this function, if an 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.
|
||||
OnUsageError func(context *Context, err error) error
|
||||
// List of child commands
|
||||
Subcommands []Command
|
||||
|
Loading…
Reference in New Issue
Block a user