diff options
author | mimikun <karaage_nennen@icloud.com> | 2024-03-09 03:03:32 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-08 18:03:32 +0000 |
commit | 8fdc376b4a3a383a3ae2fe29c6cc5ab821e5ec86 (patch) | |
tree | 52413771d87871810c9d49ab58263cb93258b160 /cli/args/flags.rs | |
parent | 5d671e079a3aada2fd1efccd82a3fe4fd33c512e (diff) |
fix(publish): typo in `--allow-dirty` help text (#22799)
Diffstat (limited to 'cli/args/flags.rs')
-rw-r--r-- | cli/args/flags.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/args/flags.rs b/cli/args/flags.rs index 26e0b089a..f9f736490 100644 --- a/cli/args/flags.rs +++ b/cli/args/flags.rs @@ -2439,7 +2439,7 @@ fn publish_subcommand() -> Command { .arg( Arg::new("allow-dirty") .long("allow-dirty") - .help("Allow publishing if the repository has uncommited changed") + .help("Allow publishing if the repository has uncommitted changed") .action(ArgAction::SetTrue), ).arg( Arg::new("no-provenance") |