From 71ffdec4fdf93d6b251f78e384e8cc4296c70d44 Mon Sep 17 00:00:00 2001 From: Alois Klink Date: Tue, 17 Oct 2023 23:27:00 +0100 Subject: [PATCH] docs: fix bad reStructuredText directive (#4129) reStructuredText requires a `::` (double-colon) to read something as a valid directive. Otherwise, it assumes that the text is just a comment. Introduced in commit 66319cf494d7875a6ffc8653928d31ffbd07187f. --- docs/src/pipe.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/pipe.rst b/docs/src/pipe.rst index 98ed5f23..30258459 100644 --- a/docs/src/pipe.rst +++ b/docs/src/pipe.rst @@ -59,7 +59,7 @@ API If a path on Unix exceeds ``sizeof(sockaddr_un.sun_path)`` bytes, typically between 92 and 108 bytes, ``uv_pipe_bind`` will fail with ``UV_ENAMETOOLONG``. - .. versionchanged: 2.0.0 long filenames will lead to an error rather than being truncated + .. versionchanged:: 2.0.0 long filenames will lead to an error rather than being truncated .. c:function:: void uv_pipe_connect(uv_connect_t* req, uv_pipe_t* handle, const char* name, uv_connect_cb cb) @@ -69,7 +69,7 @@ API If a path on Unix exceeds ``sizeof(sockaddr_un.sun_path)`` bytes, typically between 92 and 108 bytes, ``uv_pipe_bind`` will fail with ``UV_ENAMETOOLONG``. - .. versionchanged: 2.0.0 long filenames will lead to an error rather than being truncated + .. versionchanged:: 2.0.0 long filenames will lead to an error rather than being truncated .. c:function:: int uv_pipe_getsockname(const uv_pipe_t* handle, char* buffer, size_t* size)