Skip to content

Commit eff199a

Browse files
ralfthgitster
authored andcommitted
builtin/rebase.c: remove superfluous space in messages
The whitespace breakages in these messages were introduced while reimplementing the subcommand in C. Match these messages to those in the original scripted version. Signed-off-by: Ralf Thielow <[email protected]> Acked-by: Johannes Schindelin <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 5541bd5 commit eff199a

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
@@ -843,7 +843,7 @@ int cmd_rebase(int argc, const char **argv, const char *prefix)
843843
"them"), REBASE_PRESERVE_MERGES),
844844
OPT_BOOL(0, "rerere-autoupdate",
845845
&options.allow_rerere_autoupdate,
846-
N_("allow rerere to update index with resolved "
846+
N_("allow rerere to update index with resolved "
847847
"conflict")),
848848
OPT_BOOL('k', "keep-empty", &options.keep_empty,
849849
N_("preserve empty commits during rebase")),
@@ -1508,7 +1508,7 @@ int cmd_rebase(int argc, const char **argv, const char *prefix)
15081508
*/
15091509
strbuf_reset(&msg);
15101510
if (!oidcmp(&merge_base, &options.orig_head)) {
1511-
printf(_("Fast-forwarded %s to %s. \n"),
1511+
printf(_("Fast-forwarded %s to %s.\n"),
15121512
branch_name, options.onto_name);
15131513
strbuf_addf(&msg, "rebase finished: %s onto %s",
15141514
options.head_name ? options.head_name : "detached HEAD",

0 commit comments

Comments
 (0)