aboutsummaryrefslogtreecommitdiff
path: root/docs/src
diff options
context:
space:
mode:
authorPierre-Marie de Rodat <pmderodat@kawie.fr>2016-06-13 08:15:33 +0200
committercjihrig <cjihrig@gmail.com>2016-06-13 09:38:09 -0400
commit23043a7e95c93c35d076211a640427ce69f0cb96 (patch)
treef47e287cb7bb8ad984db33632fb99039a2322726 /docs/src
parent7e7e22126008813a187aa95041ae95f03afc3c5b (diff)
downloadlibuv-23043a7e95c93c35d076211a640427ce69f0cb96.tar.gz
libuv-23043a7e95c93c35d076211a640427ce69f0cb96.zip
doc: fix stream typos
PR-URL: https://github.com/libuv/libuv/pull/910 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.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/src/stream.rst b/docs/src/stream.rst
index ed0c79d0..dfcad0fa 100644
--- a/docs/src/stream.rst
+++ b/docs/src/stream.rst
@@ -61,7 +61,7 @@ Data types
.. c:type:: void (*uv_shutdown_cb)(uv_shutdown_t* req, int status)
- Callback called after s shutdown request has been completed. `status` will
+ Callback called after a shutdown request has been completed. `status` will
be 0 in case of success, < 0 otherwise.
.. c:type:: void (*uv_connection_cb)(uv_stream_t* server, int status)
@@ -92,7 +92,7 @@ Public members
.. c:member:: uv_stream_t* uv_write_t.send_handle
- Pointer to the stream being sent using this write request..
+ Pointer to the stream being sent using this write request.
.. seealso:: The :c:type:`uv_handle_t` members also apply.