aboutsummaryrefslogtreecommitdiff
path: root/docs/src
diff options
context:
space:
mode:
authorEmil Bay <github@tixz.dk>2018-08-31 11:36:53 +0200
committerSantiago Gimeno <santiago.gimeno@gmail.com>2018-09-01 13:01:10 +0200
commitff45b0d7895fa5d69df693372186e3a1692297e7 (patch)
tree7e650fb41fdef1b7c9b4d83dc273d0134942c5b5 /docs/src
parent1391a3d9d0996fcf1a116a9c6c58e8b1c7303193 (diff)
downloadlibuv-ff45b0d7895fa5d69df693372186e3a1692297e7.tar.gz
libuv-ff45b0d7895fa5d69df693372186e3a1692297e7.zip
doc: add missing slash in stream.rst
PR-URL: https://github.com/libuv/libuv/pull/1973 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Saúl Ibarra Corretgé <saghul@gmail.com>
Diffstat (limited to 'docs/src')
-rw-r--r--docs/src/stream.rst2
1 files changed, 1 insertions, 1 deletions
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.