badwords: catch and fix threading-related words

Also:
- sync newlines between the two threaded examples.

Closes #20001
This commit is contained in:
Viktor Szakats 2025-12-16 20:01:16 +01:00
parent 8dadff9434
commit 61273f5812
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201
25 changed files with 45 additions and 38 deletions

View file

@ -66,7 +66,7 @@ CURL_EXTERN CURLcode curl_easy_getinfo(CURL *curl, CURLINFO info, ...);
* Creates a new curl session handle with the same options set for the handle
* passed in. Duplicating a handle could only be a matter of cloning data and
* options, internal state info and things like persistent connections cannot
* be transferred. It is useful in multithreaded applications when you can run
* be transferred. It is useful in multi-threaded applications when you can run
* curl_easy_duphandle() for each new thread to avoid a series of identical
* curl_easy_setopt() invokes in every thread.
*/