Skip to content

Commit 544d114

Browse files
committed
Merge branch 'rt/rebase-in-c-message-fix'
* rt/rebase-in-c-message-fix: builtin/rebase.c: remove superfluous space in messages
2 parents 97b6d63 + eff199a commit 544d114

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

builtin/rebase.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -888,7 +888,7 @@ int cmd_rebase(int argc, const char **argv, const char *prefix)
888888
"them"), REBASE_PRESERVE_MERGES),
889889
OPT_BOOL(0, "rerere-autoupdate",
890890
&options.allow_rerere_autoupdate,
891-
N_("allow rerere to update index with resolved "
891+
N_("allow rerere to update index with resolved "
892892
"conflict")),
893893
OPT_BOOL('k', "keep-empty", &options.keep_empty,
894894
N_("preserve empty commits during rebase")),
@@ -1549,7 +1549,7 @@ int cmd_rebase(int argc, const char **argv, const char *prefix)
15491549
*/
15501550
strbuf_reset(&msg);
15511551
if (!oidcmp(&merge_base, &options.orig_head)) {
1552-
printf(_("Fast-forwarded %s to %s. \n"),
1552+
printf(_("Fast-forwarded %s to %s.\n"),
15531553
branch_name, options.onto_name);
15541554
strbuf_addf(&msg, "rebase finished: %s onto %s",
15551555
options.head_name ? options.head_name : "detached HEAD",

0 commit comments

Comments
 (0)