From f046ebb4092f371f46b6f4edc4e9b109081136a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Wed, 7 Sep 2016 09:39:02 +0200 Subject: [PATCH] doc: uv_buf_t members are not readonly This is probably a reminiscent of the usage in libuv 0.x, where alloc_cb used to return a uv_buf_t. Refs: https://github.com/libuv/libuv/issues/1027#issuecomment-244386298 PR-URL: https://github.com/libuv/libuv/pull/1033 Reviewed-By: Ben Noordhuis Reviewed-By: Fedor Indutny Reviewed-By: Imran Iqbal Reviewed-By: Santiago Gimeno --- docs/src/misc.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/misc.rst b/docs/src/misc.rst index 3b7f31aa..d377cc8e 100644 --- a/docs/src/misc.rst +++ b/docs/src/misc.rst @@ -17,11 +17,11 @@ Data types .. c:member:: char* uv_buf_t.base - Pointer to the base of the buffer. Readonly. + Pointer to the base of the buffer. .. c:member:: size_t uv_buf_t.len - Total bytes in the buffer. Readonly. + Total bytes in the buffer. .. note:: On Windows this field is ULONG.