Commit 829974726320c65bc92c983b50e18de3daf703fb

Stefan Sperling 2020-01-29T12:47:13

improve wording of hint displayed for the histedit 'fold' command

1
2
3
4
5
6
7
8
9
10
11
12
13
14
diff --git a/got/got.c b/got/got.c
index 7d06061..4593c8e 100644
--- a/got/got.c
+++ b/got/got.c
@@ -5577,7 +5577,8 @@ static struct got_histedit_cmd {
 } got_histedit_cmds[] = {
 	{ GOT_HISTEDIT_PICK, "pick", "use commit" },
 	{ GOT_HISTEDIT_EDIT, "edit", "use commit but stop for amending" },
-	{ GOT_HISTEDIT_FOLD, "fold", "combine with commit below" },
+	{ GOT_HISTEDIT_FOLD, "fold", "combine with next commit that will "
+	    "be used" },
 	{ GOT_HISTEDIT_DROP, "drop", "remove commit from history" },
 	{ GOT_HISTEDIT_MESG, "mesg",
 	    "single-line log message for commit above (open editor if empty)" },