docs: fix typo (staring -> starting)

Closes #18450
This commit is contained in:
Florian Friedrich 2025-09-02 09:44:07 +02:00 committed by Daniel Stenberg
parent 37c6744997
commit ad42850b23
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2
4 changed files with 4 additions and 4 deletions

View File

@ -23,6 +23,6 @@ used. Setting this delay to zero makes curl use the default backoff time.
By default, curl uses an exponentially increasing timeout between retries.
Staring in curl 8.16.0, this option accepts a time as decimal number for parts
Starting in curl 8.16.0, this option accepts a time as decimal number for parts
of seconds. The decimal value needs to be provided using a dot (.) as decimal
separator - not the local version even if it might be using another separator.

View File

@ -23,6 +23,6 @@ while performing, it may take longer than this given time period. To limit a
single request's maximum time, use --max-time. Set this option to zero to not
timeout retries.
Staring in curl 8.16.0, this option accepts a time as decimal number for parts
Starting in curl 8.16.0, this option accepts a time as decimal number for parts
of seconds. The decimal value needs to be provided using a dot (.) as decimal
separator - not the local version even if it might be using another separator.

View File

@ -68,7 +68,7 @@ static size_t readcb(char *buf, size_t nitems, size_t buflen, void *p)
result = curl_ws_start_frame(ctx->easy, CURLWS_TEXT,
(curl_off_t)ctx->blen);
if(result) {
fprintf(stderr, "error staring frame: %d\n", result);
fprintf(stderr, "error starting frame: %d\n", result);
return CURL_READFUNC_ABORT;
}
}

View File

@ -84,7 +84,7 @@ static size_t readcb(char *buf, size_t nitems, size_t buflen, void *p)
result = curl_ws_start_frame(ctx->easy, CURLWS_TEXT,
(curl_off_t)ctx->msg_len);
if(result) {
fprintf(stderr, "error staring frame: %d\n", result);
fprintf(stderr, "error starting frame: %d\n", result);
return CURL_READFUNC_ABORT;
}
}