Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Change setting to passing.
  • Loading branch information
rustyconover committed Jan 27, 2020
commit b7d4d9883b9850af324d224b26b89e29ea4fc383
4 changes: 2 additions & 2 deletions doc/api/net.md
Original file line number Diff line number Diff line change
Expand Up @@ -886,8 +886,8 @@ TCP connections when they are created have the Nagle algorithm enabled.
The Nagle algorithm delays data before it is sent via the network. It attempts
to optimize throughput at the expense of latency.

Setting `true` for `noDelay` or not passing an argument will disable the Nagle
algorithm for the socket. Setting `false` for `noDelay` will enable the Nagle
Passing `true` for `noDelay` or not passing an argument will disable the Nagle
algorithm for the socket. Passing `false` for `noDelay` will enable the Nagle
algorithm.

### `socket.setTimeout(timeout[, callback])`
Expand Down