From 395518cf7a290f78232979593351d366a228e5c0 Mon Sep 17 00:00:00 2001 From: Jacques Bodin-Hullin Date: Wed, 5 Feb 2020 13:07:23 +0000 Subject: parse-options: lose an unnecessary space in an error message Signed-off-by: Jacques Bodin-Hullin Signed-off-by: Junio C Hamano --- parse-options.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'parse-options.c') diff --git a/parse-options.c b/parse-options.c index 60fae3ad21..c278aff3a6 100644 --- a/parse-options.c +++ b/parse-options.c @@ -420,7 +420,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); } @@ -428,7 +428,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); } } -- cgit v1.3-5-g9baa