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
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).
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));
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));
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;