From: Daniel Stenberg Date: Mon, 20 Apr 2026 20:30:31 +0000 (+0200) Subject: lib: minor comment typos X-Git-Url: http://git.ipfire.org/index.cgi?a=commitdiff_plain;h=HEAD;p=thirdparty%2Fcurl.git lib: minor comment typos Closes #21388 --- diff --git a/lib/vtls/vtls_scache.h b/lib/vtls/vtls_scache.h index ed9ce0a501..a6a36f1630 100644 --- a/lib/vtls/vtls_scache.h +++ b/lib/vtls/vtls_scache.h @@ -112,7 +112,7 @@ typedef void Curl_ssl_scache_obj_dtor(void *sobj); * @param data the transfer involved * @param ssl_peer_key the key for lookup * @param sobj the TLS session object - * @param sobj_free_cb callback to free the session objectt + * @param sobj_free_cb callback to free the session object */ CURLcode Curl_ssl_scache_add_obj(struct Curl_cfilter *cf, struct Curl_easy *data, diff --git a/lib/ws.c b/lib/ws.c index ba223f4e8e..7bfe21429e 100644 --- a/lib/ws.c +++ b/lib/ws.c @@ -117,7 +117,7 @@ struct ws_cntrl_frame { struct websocket { struct Curl_easy *data; /* used for write callback handling */ struct ws_decoder dec; /* decode of ws frames */ - struct ws_encoder enc; /* decode of ws frames */ + struct ws_encoder enc; /* encode of ws frames */ struct bufq recvbuf; /* raw data from the server */ struct bufq sendbuf; /* raw data to be sent to the server */ struct curl_ws_frame recvframe; /* the current WS FRAME received */