From 61e828d49c7f4f1e32b5d30bdf914ba500934c1e Mon Sep 17 00:00:00 2001 From: Miek Gieben Date: Fri, 27 Jan 2012 08:51:24 +0100 Subject: [PATCH] Small tweaks --- README.markdown | 4 ++-- examples/reflect/reflect.go | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.markdown b/README.markdown index d6cee0a7..5cad109d 100644 --- a/README.markdown +++ b/README.markdown @@ -1,7 +1,7 @@ # Alternative (more granular) approach to a DNS library. -Completely usable DNS library. Most widely used Resource Records are -supported including the DNSSEC types. It follows a lean and mean philosophy. +Complete and usable DNS library. Most widely used Resource Records are +supported, including the DNSSEC types. It follows a lean and mean philosophy. If there is stuff you should know as a DNS programmer there isn't a convenience function for it. For instance I'm pondering if a zone-like structure should be implemented in the library. diff --git a/examples/reflect/reflect.go b/examples/reflect/reflect.go index 61b848da..e5bf8186 100644 --- a/examples/reflect/reflect.go +++ b/examples/reflect/reflect.go @@ -128,10 +128,10 @@ func main() { } dns.HandleFunc(".", handleReflect) - go serve("udp4") - go serve("udp6") - go serve("tcp4") go serve("tcp6") + go serve("tcp4") + go serve("udp6") + go serve("udp4") forever: for { select {