From 95ffaca79d2642807e16a9d4ca42bc22e930a95e Mon Sep 17 00:00:00 2001 From: Miek Gieben Date: Tue, 14 Feb 2012 22:43:04 +0100 Subject: [PATCH] typo --- labels.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/labels.go b/labels.go index 7e761ea4..c70c1d00 100644 --- a/labels.go +++ b/labels.go @@ -4,7 +4,7 @@ package dns // SplitLabels splits a domainname string into its labels. // www.miek.nl. returns []string{"www", "miek", "nl"} -// The root label (.) returns nil +// The root label (.) returns nil. func SplitLabels(s string) []string { if (s == ".") { return nil