diff --git a/.github/scripts/badwords.txt b/.github/scripts/badwords.txt index c5f91795dc..38c61eb283 100644 --- a/.github/scripts/badwords.txt +++ b/.github/scripts/badwords.txt @@ -73,6 +73,7 @@ host name\b:hostname host names\b:hostnames [^;<]file name\b:filename file names\b:filenames +\bfist\b:first \buser name\b:username \buser names\b:usernames \bpass phrase:passphrase diff --git a/docs/internals/MID.md b/docs/internals/MID.md index 17b11ea792..ebad80818d 100644 --- a/docs/internals/MID.md +++ b/docs/internals/MID.md @@ -36,7 +36,7 @@ writing that is `16` for "multi_easy" handles (used in `curl_easy_perform()` and `512` for multi handles created with `curl_multi_init()`. The first added easy handle gets `mid == 1` assigned. The second one receives `2`, -even when the fist one has been removed already. Every added handle gets an +even when the first one has been removed already. Every added handle gets an `mid` one larger than the previously assigned one. Until the capacity of the table is reached and it starts looking for a free id at `1` again (`0` is always in the table). diff --git a/lib/cf-h2-proxy.c b/lib/cf-h2-proxy.c index d225d69989..4f101a05fe 100644 --- a/lib/cf-h2-proxy.c +++ b/lib/cf-h2-proxy.c @@ -445,7 +445,7 @@ static CURLcode proxy_h2_progress_ingress(struct Curl_cfilter *cf, CURLcode result = CURLE_OK; size_t nread; - /* Process network input buffer fist */ + /* Process network input buffer first */ if(!Curl_bufq_is_empty(&ctx->inbufq)) { CURL_TRC_CF(data, cf, "[0] process %zu bytes in connection buffer", Curl_bufq_len(&ctx->inbufq)); diff --git a/lib/http2.c b/lib/http2.c index e0c447ac7e..a8b8d5c52f 100644 --- a/lib/http2.c +++ b/lib/http2.c @@ -2042,7 +2042,7 @@ static CURLcode h2_progress_ingress(struct Curl_cfilter *cf, return CURLE_HTTP2; } - /* Process network input buffer fist */ + /* Process network input buffer first */ if(!Curl_bufq_is_empty(&ctx->inbufq)) { CURL_TRC_CF(data, cf, "Process %zu bytes in connection buffer", Curl_bufq_len(&ctx->inbufq)); diff --git a/src/tool_getparam.c b/src/tool_getparam.c index 7a3f815dff..016135664b 100644 --- a/src/tool_getparam.c +++ b/src/tool_getparam.c @@ -1494,7 +1494,7 @@ static ParameterError parse_verbose(bool toggle) return err; } else if(!verbose_nopts) { - /* fist `-v` in an argument resets to base verbosity */ + /* first `-v` in an argument resets to base verbosity */ global->verbosity = 0; if(!global->trace_set && set_trace_config("-all")) return PARAM_NO_MEM;