i18n: fix small typos
Translating the new strings introduced for v2.20 showed some typos. Signed-off-by: Jean-Noël Avila <jn.avila@free.fr> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Jean-Noël Avila committed
Nov 28, 2018 at 22:43 UTC
d355e46a15943554b917f3198f2c6dc78011dd4c
2 files changed
+2
-2
http.c
+1
-1
@@ -834,7 +834,7 @@ static CURL *get_curl_handle(void)
834
#if LIBCURL_VERSION_NUM >= 0x072c00
835
curl_easy_setopt(result, CURLOPT_SSL_OPTIONS, CURLSSLOPT_NO_REVOKE);
836
#else
837
- warning(_("CURLSSLOPT_NO_REVOKE not suported with cURL < 7.44.0"));
837
+ warning(_("CURLSSLOPT_NO_REVOKE not supported with cURL < 7.44.0"));
838
#endif
839
}
840
midx.c
+1
-1
@@ -202,7 +202,7 @@ int prepare_midx_pack(struct multi_pack_index *m, uint32_t pack_int_id)
202
struct strbuf pack_name = STRBUF_INIT;
203
204
if (pack_int_id >= m->num_packs)
205
- die(_("bad pack-int-id: %u (%u total packs"),
205
+ die(_("bad pack-int-id: %u (%u total packs)"),
206
pack_int_id, m->num_packs);
207
208
if (m->packs[pack_int_id])