Update command.rs

Correct wording.
This commit is contained in:
Kelly Thomas Kline 2023-11-16 21:06:03 -08:00 committed by GitHub
parent 3aeea916e8
commit 7568d5fa67
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1359,7 +1359,7 @@ impl Command {
/// assert_eq!(res.unwrap_err().kind(), ErrorKind::UnknownArgument);
/// ```
///
/// You can create a custom version flag with [`ArgAction::Help`], [`ArgAction::HelpShort`], or
/// You can create a custom help flag with [`ArgAction::Help`], [`ArgAction::HelpShort`], or
/// [`ArgAction::HelpLong`]
/// ```rust
/// # use clap_builder as clap;