From 419975e54ef07bdfefecddeebff9e3837b815337 Mon Sep 17 00:00:00 2001 From: Ryan Liptak Date: Tue, 19 Feb 2019 18:06:39 -0800 Subject: [PATCH] doc: fix typo in uv_thread_options_t definition MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/libuv/libuv/pull/2195 Reviewed-By: Colin Ihrig Reviewed-By: Saúl Ibarra Corretgé --- docs/src/threading.rst | 4 ++-- 1 file 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.