]> git.ipfire.org Git - thirdparty/git.git/commitdiff
help: fix small typo in error message
authorJean-Noël Avila <jn.avila@free.fr>
Thu, 20 May 2021 07:42:14 +0000 (09:42 +0200)
committerJunio C Hamano <gitster@pobox.com>
Thu, 20 May 2021 22:52:10 +0000 (07:52 +0900)
Classic string concatenation while forgetting a space character.

Signed-off-by: Jean-Noël Avila <jn.avila@free.fr>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
list-objects-filter-options.c

index 96a605c8adea3b29d38988274fb68faa8b266080..fd8d59f653ab9b04cc709f9d0f4b00f407bf7ae9 100644 (file)
@@ -102,7 +102,7 @@ static int gently_parse_list_objects_filter(
        } else if (skip_prefix(arg, "object:type=", &v0)) {
                int type = type_from_string_gently(v0, strlen(v0), 1);
                if (type < 0) {
-                       strbuf_addf(errbuf, _("'%s' for 'object:type=<type>' is"
+                       strbuf_addf(errbuf, _("'%s' for 'object:type=<type>' is "
                                              "not a valid object type"), v0);
                        return 1;
                }