diff options
author | Bart Robinson <bartarr@gmail.com> | 2016-09-14 11:10:36 -0700 |
---|---|---|
committer | Saúl Ibarra Corretgé <saghul@gmail.com> | 2016-09-15 10:38:34 +0200 |
commit | d38edefc73b2f14d592b6585462a0732deb3ee1e (patch) | |
tree | 6121bfc575bd2724a04b5e0cf0ba9a806b50167a /docs/src | |
parent | e7bc260c4260658517cab4de077e2195c0c7c235 (diff) | |
download | libuv-d38edefc73b2f14d592b6585462a0732deb3ee1e.tar.gz libuv-d38edefc73b2f14d592b6585462a0732deb3ee1e.zip |
doc: fix confusing doc of uv_tcp_nodelay
Previous description implied enabling nodelay enabled Nagle, but it is
the other way around.
PR-URL: https://github.com/libuv/libuv/pull/1050
Reviewed-By: Saúl Ibarra Corretgé <saghul@gmail.com>
Diffstat (limited to 'docs/src')
-rw-r--r-- | docs/src/tcp.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/tcp.rst b/docs/src/tcp.rst index ca0c9b4a..a1a58245 100644 --- a/docs/src/tcp.rst +++ b/docs/src/tcp.rst @@ -53,7 +53,7 @@ API .. c:function:: int uv_tcp_nodelay(uv_tcp_t* handle, int enable) - Enable / disable Nagle's algorithm. + Enable `TCP_NODELAY`, which disables Nagle's algorithm. .. c:function:: int uv_tcp_keepalive(uv_tcp_t* handle, int enable, unsigned int delay) |