aboutsummaryrefslogtreecommitdiff
path: root/docs/src
diff options
context:
space:
mode:
Diffstat (limited to 'docs/src')
-rw-r--r--docs/src/threading.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/src/threading.rst b/docs/src/threading.rst
index a5759a38..7ca1d4b7 100644
--- a/docs/src/threading.rst
+++ b/docs/src/threading.rst
@@ -61,13 +61,13 @@ Threads
::
- typedef struct uv_process_options_s {
+ typedef struct uv_thread_options_s {
enum {
UV_THREAD_NO_FLAGS = 0x00,
UV_THREAD_HAS_STACK_SIZE = 0x01
} flags;
size_t stack_size;
- } uv_process_options_t;
+ } uv_thread_options_t;
More fields may be added to this struct at any time, so its exact
layout and size should not be relied upon.