From 8fdc376b4a3a383a3ae2fe29c6cc5ab821e5ec86 Mon Sep 17 00:00:00 2001 From: mimikun Date: Sat, 9 Mar 2024 03:03:32 +0900 Subject: [PATCH] fix(publish): typo in `--allow-dirty` help text (#22799) --- cli/args/flags.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/args/flags.rs b/cli/args/flags.rs index 26e0b089a7..f9f7364903 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")