From 1a90efb5c4d3104001c1f4b72b6ebb3e7d476aaa Mon Sep 17 00:00:00 2001 From: Miek Gieben Date: Fri, 31 Aug 2012 21:00:58 +0200 Subject: [PATCH] fix docs --- dns.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dns.go b/dns.go index d8f73156..d533d021 100644 --- a/dns.go +++ b/dns.go @@ -41,6 +41,10 @@ // m := dns.new(Msg) // m.SetQuestion("miek.nl.", dns.TypeMX) // +// Or when note sure if the domain name is fully qualified: +// +// m.SetQuestion(dns.Fqdn("miek.nl"), dns.TypeMX) +// // The message m is now a message with the question section set to ask // the MX records for the miek.nl. zone. //