From 4ec58724d730027a275f04c6ccf597093cb38817 Mon Sep 17 00:00:00 2001 From: Peter Johnson Date: Wed, 20 Oct 2021 08:46:44 -0700 Subject: [PATCH] [wpiutil] uv::Tcp: Clarify SetNoDelay documentation (#3649) --- wpiutil/src/main/native/include/wpi/uv/Tcp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wpiutil/src/main/native/include/wpi/uv/Tcp.h b/wpiutil/src/main/native/include/wpi/uv/Tcp.h index 797abccb36..e99e47036c 100644 --- a/wpiutil/src/main/native/include/wpi/uv/Tcp.h +++ b/wpiutil/src/main/native/include/wpi/uv/Tcp.h @@ -112,7 +112,7 @@ class Tcp final : public NetworkStreamImpl { void Open(uv_os_sock_t sock) { Invoke(&uv_tcp_open, GetRaw(), sock); } /** - * Enable/Disable Nagle's algorithm. + * Enable no delay operation (turns off Nagle's algorithm). * @param enable True to enable it, false otherwise. * @return True in case of success, false otherwise. */