Skip to content

Commit 225f7fa

Browse files
jnavilagitster
authored andcommitted
help: fix small typo in error message
Classic string concatenation while forgetting a space character. Signed-off-by: Jean-Noël Avila <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 9cf68b2 commit 225f7fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

list-objects-filter-options.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ static int gently_parse_list_objects_filter(
102102
} else if (skip_prefix(arg, "object:type=", &v0)) {
103103
int type = type_from_string_gently(v0, strlen(v0), 1);
104104
if (type < 0) {
105-
strbuf_addf(errbuf, _("'%s' for 'object:type=<type>' is"
105+
strbuf_addf(errbuf, _("'%s' for 'object:type=<type>' is "
106106
"not a valid object type"), v0);
107107
return 1;
108108
}

0 commit comments

Comments
 (0)