0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-30 15:30:56 +01:00

doc: fix dns.lookup options example

PR-URL: https://github.com/iojs/io.js/pull/757
Reviewed-By: Brendan Ashworth <brendan.ashworth@me.com>
This commit is contained in:
Roman Reiss 2015-02-08 11:17:32 +01:00 committed by Brendan Ashworth
parent 90d2b35281
commit 828d19a1f6

View File

@ -79,8 +79,8 @@ All properties are optional. An example usage of options is shown below.
```
{
family: 4,
hints: dns.ADDRCONFIG | dns.V4MAPPED
all: true
hints: dns.ADDRCONFIG | dns.V4MAPPED,
all: false
}
```