From d7400fd503bc85b4cd4bee3da27093f73b2bd43a Mon Sep 17 00:00:00 2001 From: Miek Gieben Date: Mon, 16 Jan 2012 21:20:21 +0100 Subject: [PATCH] documentation --- dns.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dns.go b/dns.go index f9b523a4..8da9ff88 100644 --- a/dns.go +++ b/dns.go @@ -41,10 +41,10 @@ // m1.Question[0] = Question{"miek.nl.", TypeMX, ClassINET} // // After creating a message it can be send. -// Basic use pattern for synchronous querying the DNS. We are -// sending the message 'm' to the server 127.0.0.1 on port 53 and -// waiting for the reply. +// Basic use pattern for synchronous querying the DNS: // +// // We are sending the message 'm' to the server 127.0.0.1 +// // on port 53 and wait for the reply. // c := NewClient() // // c.Net = "tcp" // If you want to use TCP // in := c.Exchange(m, "127.0.0.1:53")