diff --git a/dns.go b/dns.go index 4e66028a..556743a1 100644 --- a/dns.go +++ b/dns.go @@ -62,14 +62,14 @@ // An asynchronous query is also possible, see client.Do and client.DoRtt. // // From a birds eye view a dns message consists out of four sections. -// The question section: m.Question, the answer answer section: m.Answer, -// the authority section: m.Ns and the additional section: m.Extra. +// The question section: in.Question, the answer answer section: in.Answer, +// the authority section: in.Ns and the additional section: in.Extra. // // Each of these sections (except the Question section) contain a []RR. Basic // use pattern for accessing the rdata of a TXT RR as the first RR in // the Answer section: // -// if t, ok := m.Answer[0].(*RR_TXT); ok { +// if t, ok := in.Answer[0].(*RR_TXT); ok { // // do something with t.Txt // } package dns