typo in the docs

This commit is contained in:
Miek Gieben 2014-09-11 08:49:16 +01:00
parent 5cdb7e11a3
commit b6da65c4b0
1 changed files with 1 additions and 1 deletions

2
dns.go
View File

@ -51,7 +51,7 @@
// m1 := new(dns.Msg)
// m1.Id = dns.Id()
// m1.RecursionDesired = true
// m1.Question = make([]Question, 1)
// m1.Question = make([]dns.Question, 1)
// m1.Question[0] = dns.Question{"miek.nl.", dns.TypeMX, dns.ClassINET}
//
// After creating a message it can be send.