From 87053e8aee527ec2eb6ac4db2a476e20e1c5f23b Mon Sep 17 00:00:00 2001 From: Kohei TAKATA Date: Fri, 3 Apr 2015 20:18:22 +0900 Subject: [PATCH] doc: add back quote to boolean variable 'true' PR-URL: https://github.com/iojs/io.js/pull/1338 Reviewed-By: Roman Reiss --- doc/api/dgram.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/dgram.markdown b/doc/api/dgram.markdown index d370712789f2a6..202e907f5a5931 100644 --- a/doc/api/dgram.markdown +++ b/doc/api/dgram.markdown @@ -46,7 +46,7 @@ with `socket.address().address` and `socket.address().port`. The `options` object should contain a `type` field of either `udp4` or `udp6` and an optional boolean `reuseAddr` field. -When `reuseAddr` is true `socket.bind()` will reuse the address, even if +When `reuseAddr` is `true` `socket.bind()` will reuse the address, even if another process has already bound a socket on it. `reuseAddr` defaults to `false`.