diff options
author | Junio C Hamano <gitster@pobox.com> | 2021-06-14 13:33:28 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-06-14 13:33:28 +0900 |
commit | d9d3b76feedc74d50221ca7b8efd84d4c0db2c05 (patch) | |
tree | 265d356b71823cfdd4f6ff2d3b2245fcf23d909e | |
parent | Merge branch 'ab/trace2-squelch-gcc-warning' (diff) | |
parent | help: fix small typo in error message (diff) | |
download | tgif-d9d3b76feedc74d50221ca7b8efd84d4c0db2c05.tar.xz |
Merge branch 'ps/rev-list-object-type-filter'
Message update.
* ps/rev-list-object-type-filter:
help: fix small typo in error message
-rw-r--r-- | list-objects-filter-options.c | 2 |
1 files changed, 1 insertions, 1 deletions
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=<type>' is" + strbuf_addf(errbuf, _("'%s' for 'object:type=<type>' is " "not a valid object type"), v0); return 1; } |