]> granicus.if.org Git - curl/commitdiff
threaded-shared-conn.c: fixed typo in commenta
authorDaniel Stenberg <daniel@haxx.se>
Tue, 5 Dec 2017 22:35:08 +0000 (23:35 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 5 Dec 2017 22:35:08 +0000 (23:35 +0100)
docs/examples/threaded-shared-conn.c

index 7ff832e849634e8bed3cb5f7536b3d5ea2fa85a4..ab5ac406dd06241c9832f0a380748c9115a05644 100644 (file)
@@ -26,7 +26,7 @@
  * This example fires up NUM_THREADS threads and in each single thread, it
  * downloads the same fixed URL a URL_ITERATIONS number of times. The received
  * data is just thrown away. It sets up a single shared object that holds the
- * connection cache and all easy threads in all threads share that same cache.
+ * connection cache and all easy handles in all threads share that same cache.
  *
  * This example uses pthreads for threads and mutexes, but should be easy to
  * modify to use different thread/mutex system should you want to.