From 15d8cdc5f97cd066d8ea85d3cffe6c5cfbb4c588 Mon Sep 17 00:00:00 2001 From: Miek Gieben Date: Tue, 4 Jun 2013 11:37:11 +0200 Subject: [PATCH] Fix: the *dns.TXT instead of *TXT --- dns.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dns.go b/dns.go index 050e7297..403871b1 100644 --- a/dns.go +++ b/dns.go @@ -71,7 +71,7 @@ // use pattern for accessing the rdata of a TXT RR as the first RR in // the Answer section: // -// if t, ok := in.Answer[0].(*TXT); ok { +// if t, ok := in.Answer[0].(*dns.TXT); ok { // // do something with t.Txt // } package dns