Skip to content

Commit

Permalink
undefined or nil Args default to ArbitraryArgs
Browse files Browse the repository at this point in the history
  • Loading branch information
umarcor committed Mar 10, 2022
1 parent e8f2011 commit 80f7bcd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion command.go
Expand Up @@ -997,7 +997,7 @@ func (c *Command) ExecuteC() (cmd *Command, err error) {

func (c *Command) ValidateArgs(args []string) error {
if c.Args == nil {
return nil
return ArbitraryArgs(c, args)
}
return c.Args(c, args)
}
Expand Down
4 changes: 2 additions & 2 deletions user_guide.md
Expand Up @@ -302,8 +302,8 @@ rootCmd.MarkPersistentFlagRequired("region")

## Positional and Custom Arguments

Validation of positional arguments can be specified using the `Args` field
of `Command`.
Validation of positional arguments can be specified using the `Args` field of `Command`.
If `Args` is undefined or `nil`, it defaults to `ArbitraryArgs`.

The following validators are built in:

Expand Down

0 comments on commit 80f7bcd

Please sign in to comment.