From 594a9276bcfa3f12271be8a017812999251168ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20D=C3=BCrrmeier?= <857448+md42@users.noreply.github.com> Date: Mon, 16 Mar 2026 10:06:13 +0100 Subject: [PATCH] docs/lib: fix typos Repated 'the the' and 'with with' Closes #20933 --- docs/FAQ.md | 2 +- lib/cfilters.c | 2 +- lib/doh.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/FAQ.md b/docs/FAQ.md index a7435376b7..8d4028dc3a 100644 --- a/docs/FAQ.md +++ b/docs/FAQ.md @@ -248,7 +248,7 @@ An incomprehensible description of the two numbers above is available on We strongly encourage you to submit changes and improvements directly as [pull requests on GitHub](https://github.com/curl/curl/pulls). -If you cannot or choose not to engage with with GitHub, send your patch +If you cannot or choose not to engage with GitHub, send your patch to the curl-library mailing list. We are many subscribers there and there are lots of people who can review patches, comment on them and receive them properly. diff --git a/lib/cfilters.c b/lib/cfilters.c index 6bc351042d..0cd144d601 100644 --- a/lib/cfilters.c +++ b/lib/cfilters.c @@ -1033,7 +1033,7 @@ size_t Curl_conn_get_max_concurrent(struct Curl_easy *data, result = cf ? cf->cft->query(cf, data, CF_QUERY_MAX_CONCURRENT, &n, NULL) : CURLE_UNKNOWN_OPTION; /* If no filter answered the query, the default is a non-multiplexed - * connection with limit 1. Otherwise, the the query may return 0 + * connection with limit 1. Otherwise, the query may return 0 * for connections that are in shutdown, e.g. server HTTP/2 GOAWAY. */ return (result || n < 0) ? 1 : (size_t)n; } diff --git a/lib/doh.c b/lib/doh.c index 7374006a35..68dd083824 100644 --- a/lib/doh.c +++ b/lib/doh.c @@ -205,7 +205,7 @@ static void doh_print_buf(struct Curl_easy *data, #endif /* called from multi when a sub transfer, e.g. doh probe, is done. - * This looks up the the probe response at its meta CURL_EZM_DOH_PROBE + * This looks up the probe response at its meta CURL_EZM_DOH_PROBE * and copies the response body over to the struct at the master's * meta at CURL_EZM_DOH_MASTER. */ static void doh_probe_done(struct Curl_easy *data,