misc: fix typos

Closes #13344
This commit is contained in:
RainRat 2024-04-10 00:36:10 -07:00 committed by Daniel Stenberg
parent bfe54b0e88
commit 1087937992
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
12 changed files with 12 additions and 12 deletions

View file

@ -407,7 +407,7 @@ FAQ
The reason why static libraries is much harder to deal with is that for them
we do not get any help but the script itself must know or check what more
libraries that are needed (with shared libraries, that dependency "chain" is
handled automatically). This is a error-prone process and one that also
handled automatically). This is an error-prone process and one that also
tends to vary over time depending on the release versions of the involved
components and may also differ between operating systems.

View file

@ -94,7 +94,7 @@ int main(void)
if(curl_easy_setopt(curl, CURLOPT_SSLENGINE_DEFAULT, 1L) != CURLE_OK) {
/* set the crypto engine as default */
/* only needed for the first time you load
a engine in a curl object... */
an engine in a curl object... */
fprintf(stderr, "cannot set crypto engine as default\n");
break;
}