summaryrefslogtreecommitdiff
path: root/docs/examples/threaded-shared-conn.c
diff options
context:
space:
mode:
Diffstat (limited to 'docs/examples/threaded-shared-conn.c')
-rw-r--r--docs/examples/threaded-shared-conn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/examples/threaded-shared-conn.c b/docs/examples/threaded-shared-conn.c
index 8402603b1..3babdaad5 100644
--- a/docs/examples/threaded-shared-conn.c
+++ b/docs/examples/threaded-shared-conn.c
@@ -107,7 +107,7 @@ static void *run_thread(void *ptr)
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, write_db);
curl_easy_perform(curl); /* ignores error */
curl_easy_cleanup(curl);
- fprintf(stderr, "Tread %d transfer %d\n", u->threadno, i);
+ fprintf(stderr, "Thread %d transfer %d\n", u->threadno, i);
}
return NULL;