From: Jean-Noël Avila Date: Thu, 20 May 2021 07:42:14 +0000 (+0200) Subject: help: fix small typo in error message X-Git-Tag: v2.33.0-rc0~109^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=225f7fa84790a50dc95ffc21ef8f601f0f5e9da5;p=thirdparty%2Fgit.git help: fix small typo in error message Classic string concatenation while forgetting a space character. Signed-off-by: Jean-Noël Avila Signed-off-by: Junio C Hamano --- diff --git a/list-objects-filter-options.c b/list-objects-filter-options.c index 96a605c8ad..fd8d59f653 100644 --- a/list-objects-filter-options.c +++ b/list-objects-filter-options.c @@ -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=' is" + strbuf_addf(errbuf, _("'%s' for 'object:type=' is " "not a valid object type"), v0); return 1; }