diff options
author | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2017-04-24 11:33:17 -0400 |
---|---|---|
committer | Saúl Ibarra Corretgé <saghul@gmail.com> | 2017-04-25 08:15:11 +0200 |
commit | e4bc694b365665fb6cc47fd1544f1b5597228d19 (patch) | |
tree | 54516dda612eff781c4c679752dc00b89581b824 /docs/src | |
parent | d898a1f6f87ba30e7803fe402121464553b2ffaf (diff) | |
download | libuv-e4bc694b365665fb6cc47fd1544f1b5597228d19.tar.gz libuv-e4bc694b365665fb6cc47fd1544f1b5597228d19.zip |
doc: fix documentation for uv_handle_t.type
PR-URL: https://github.com/libuv/libuv/pull/1316
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Saúl Ibarra Corretgé <saghul@gmail.com>
Diffstat (limited to 'docs/src')
-rw-r--r-- | docs/src/handle.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/src/handle.rst b/docs/src/handle.rst index 14aec51f..a0f3d05f 100644 --- a/docs/src/handle.rst +++ b/docs/src/handle.rst @@ -86,9 +86,9 @@ Public members Pointer to the :c:type:`uv_loop_t` where the handle is running on. Readonly. -.. c:member:: uv_loop_t* uv_handle_t.type +.. c:member:: uv_handle_type uv_handle_t.type - Pointer to the :c:type:`uv_handle_type`. Readonly. + The :c:type:`uv_handle_type`, indicating the type of the underlying handle. Readonly. .. c:member:: void* uv_handle_t.data |