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

@ -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;
}
}