Commit 4cb8f8f3e6cc4a795c92823235070dd921c2b42e

Stefan Sperling 2020-03-05T09:51:26

fix wrong use of words in a histedit error message

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/got/got.c b/got/got.c
index fc50380..3ac85b3 100644
--- a/got/got.c
+++ b/got/got.c
@@ -6867,7 +6867,7 @@ cmd_histedit(int argc, char *argv[])
 		if (error)
 			goto done;
 		error = got_error_msg(GOT_ERR_CONFLICTS,
-		    "conflicts must be resolved before rebasing can continue");
+		    "conflicts must be resolved before histedit can continue");
 	} else
 		error = histedit_complete(worktree, fileindex, tmp_branch,
 		    branch, repo);