]> git.ipfire.org Git - thirdparty/git.git/blobdiff - parse-options.c
compat: remove gmtime
[thirdparty/git.git] / parse-options.c
index 60fae3ad213782dffa82e3c7dd246b47c566bf56..c278aff3a65a2d5e9e2be79596cdcd14d50e2a17 100644 (file)
@@ -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);
                }
        }