From ff45b0d7895fa5d69df693372186e3a1692297e7 Mon Sep 17 00:00:00 2001 From: Emil Bay Date: Fri, 31 Aug 2018 11:36:53 +0200 Subject: [PATCH] doc: add missing slash in stream.rst MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/libuv/libuv/pull/1973 Reviewed-By: Anna Henningsen Reviewed-By: Colin Ihrig Reviewed-By: Saúl Ibarra Corretgé --- docs/src/stream.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/stream.rst b/docs/src/stream.rst index 9ec23622..6a704367 100644 --- a/docs/src/stream.rst +++ b/docs/src/stream.rst @@ -45,7 +45,7 @@ Data types `nread` might be 0, which does *not* indicate an error or EOF. This is equivalent to ``EAGAIN`` or ``EWOULDBLOCK`` under ``read(2)``. - The callee is responsible for stopping closing the stream when an error happens + The callee is responsible for stopping/closing the stream when an error happens by calling :c:func:`uv_read_stop` or :c:func:`uv_close`. Trying to read from the stream again is undefined.