doc: fix dns.lookup options example
authorRoman Reiss <me@silverwind.io>
Sun, 8 Feb 2015 10:17:32 +0000 (11:17 +0100)
committerBrendan Ashworth <brendan.ashworth@me.com>
Sun, 8 Feb 2015 19:03:37 +0000 (11:03 -0800)
PR-URL: https://github.com/iojs/io.js/pull/757
Reviewed-By: Brendan Ashworth <brendan.ashworth@me.com>
doc/api/dns.markdown

index 2c28c02..024ffec 100644 (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
 }
 ```