From a7e2896b77e9b4e7830637d27041210deb2266ef Mon Sep 17 00:00:00 2001 From: Peter Grayson Date: Sun, 5 May 2024 08:53:05 -0400 Subject: [PATCH] docs(pop): clarify --spill behavior Fixes: #445 --- src/cmd/pop.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmd/pop.rs b/src/cmd/pop.rs index b1ad0605..891bdf57 100644 --- a/src/cmd/pop.rs +++ b/src/cmd/pop.rs @@ -82,7 +82,7 @@ fn make() -> clap::Command { Arg::new("spill") .long("spill") .short('s') - .help("Keep patches' modifications in working tree after popping") + .help("Keep patches' modifications in index and worktree after popping") .action(clap::ArgAction::SetTrue), ) .arg(argset::keep_arg())