Skip to content

Commit 32ceace

Browse files
jnavilagitster
authored andcommitted
Fix typos in translatable strings for v2.21.0
Signed-off-by: Jean-Noël Avila <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 11ad41d commit 32ceace

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

builtin/bisect--helper.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ static int bisect_reset(const char *commit)
173173
argv_array_clear(&argv);
174174
return error(_("could not check out original"
175175
" HEAD '%s'. Try 'git bisect"
176-
"reset <commit>'."), branch.buf);
176+
" reset <commit>'."), branch.buf);
177177
}
178178
argv_array_clear(&argv);
179179
}
@@ -646,7 +646,7 @@ int cmd_bisect__helper(int argc, const char **argv, const char *prefix)
646646
OPT_BOOL(0, "no-checkout", &no_checkout,
647647
N_("update BISECT_HEAD instead of checking out the current commit")),
648648
OPT_BOOL(0, "no-log", &nolog,
649-
N_("no log for BISECT_WRITE ")),
649+
N_("no log for BISECT_WRITE")),
650650
OPT_END()
651651
};
652652
struct bisect_terms terms = { .term_good = NULL, .term_bad = NULL };

builtin/fetch.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1480,7 +1480,7 @@ static inline void fetch_one_setup_partial(struct remote *remote)
14801480
if (strcmp(remote->name, repository_format_partial_clone)) {
14811481
if (filter_options.choice)
14821482
die(_("--filter can only be used with the remote "
1483-
"configured in extensions.partialclone"));
1483+
"configured in extensions.partialClone"));
14841484
return;
14851485
}
14861486

builtin/rebase.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1434,7 +1434,7 @@ int cmd_rebase(int argc, const char **argv, const char *prefix)
14341434
}
14351435

14361436
if (options.reschedule_failed_exec && !is_interactive(&options))
1437-
die(_("--reschedule-failed-exec requires an interactive rebase"));
1437+
die(_("%s requires an interactive rebase"), "--reschedule-failed-exec");
14381438

14391439
if (options.git_am_opts.argc) {
14401440
/* all am options except -q are compatible only with --am */

0 commit comments

Comments
 (0)