aboutsummaryrefslogtreecommitdiff
path: root/docs/src
diff options
context:
space:
mode:
authorRyan Liptak <squeek502@hotmail.com>2019-02-19 18:06:39 -0800
committercjihrig <cjihrig@gmail.com>2019-03-16 11:37:00 -0400
commit419975e54ef07bdfefecddeebff9e3837b815337 (patch)
tree6a347f57acef6c5a78831d090793d62ca4a7d285 /docs/src
parentbdb5838eac6c159939455285955e3bf7d860ffd6 (diff)
downloadlibuv-419975e54ef07bdfefecddeebff9e3837b815337.tar.gz
libuv-419975e54ef07bdfefecddeebff9e3837b815337.zip
doc: fix typo in uv_thread_options_t definition
PR-URL: https://github.com/libuv/libuv/pull/2195 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Saúl Ibarra Corretgé <saghul@gmail.com>
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.