aboutsummaryrefslogtreecommitdiffstats
path: root/parse-options.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2020-02-12 12:41:37 -0800
committerJunio C Hamano <gitster@pobox.com>2020-02-12 12:41:37 -0800
commitdb72f8c940b3c49286fb88958b3c50fe6f0d6319 (patch)
tree7154d7c2c1e8bd77c0e767e9defc90e31a5a958d /parse-options.c
parent3d2471ba855e536489710114b609482b9f781a24 (diff)
parent395518cf7a290f78232979593351d366a228e5c0 (diff)
downloadgit-db72f8c940b3c49286fb88958b3c50fe6f0d6319.tar.gz
Merge branch 'jb/parse-options-message-fix'
Error message fix. * jb/parse-options-message-fix: parse-options: lose an unnecessary space in an error message
Diffstat (limited to 'parse-options.c')
-rw-r--r--parse-options.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/parse-options.c b/parse-options.c
index e8c04109ba..a0cef401fc 100644
--- a/parse-options.c
+++ b/parse-options.c
@@ -419,7 +419,7 @@ static void check_typos(const char *arg, const struct option *options)
return;
if (starts_with(arg, "no-")) {
- error(_("did you mean `--%s` (with two dashes ?)"), arg);
+ error(_("did you mean `--%s` (with two dashes)?"), arg);
exit(129);
}
@@ -427,7 +427,7 @@ static void check_typos(const char *arg, const struct option *options)
if (!options->long_name)
continue;
if (starts_with(options->long_name, arg)) {
- error(_("did you mean `--%s` (with two dashes ?)"), arg);
+ error(_("did you mean `--%s` (with two dashes)?"), arg);
exit(129);
}
}