From 828d19a1f696840acf43b70125b85b0d61ff5056 Mon Sep 17 00:00:00 2001 From: Roman Reiss Date: Sun, 8 Feb 2015 11:17:32 +0100 Subject: [PATCH] doc: fix dns.lookup options example PR-URL: https://github.com/iojs/io.js/pull/757 Reviewed-By: Brendan Ashworth --- doc/api/dns.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api/dns.markdown b/doc/api/dns.markdown index 2c28c02..024ffec 100644 --- a/doc/api/dns.markdown +++ b/doc/api/dns.markdown @@ -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 } ``` -- 2.7.4