fix: ContextKind.as_str() spellings

Signed-off-by: Peter Grayson <pete@jpgrayson.net>
This commit is contained in:
Peter Grayson 2022-11-16 11:14:54 -05:00
parent ba32ab87b2
commit d9c9c7bdd8
No known key found for this signature in database
GPG key ID: 806EE62CA45D41B9

View file

@ -46,8 +46,8 @@ impl ContextKind {
Self::InvalidSubcommand => Some("Invalid Subcommand"), Self::InvalidSubcommand => Some("Invalid Subcommand"),
Self::InvalidArg => Some("Invalid Argument"), Self::InvalidArg => Some("Invalid Argument"),
Self::PriorArg => Some("Prior Argument"), Self::PriorArg => Some("Prior Argument"),
Self::ValidSubcommand => Some("Value Subcommand"), Self::ValidSubcommand => Some("Valid Subcommand"),
Self::ValidValue => Some("Value Value"), Self::ValidValue => Some("Valid Value"),
Self::InvalidValue => Some("Invalid Value"), Self::InvalidValue => Some("Invalid Value"),
Self::ActualNumValues => Some("Actual Number of Values"), Self::ActualNumValues => Some("Actual Number of Values"),
Self::ExpectedNumValues => Some("Expected Number of Values"), Self::ExpectedNumValues => Some("Expected Number of Values"),