]> Cypherpunks repositories - gostls13.git/commitdiff
net: fix some typos in comments
authorIan Lance Taylor <iant@golang.org>
Thu, 15 Jan 2015 05:25:26 +0000 (21:25 -0800)
committerIan Lance Taylor <iant@golang.org>
Thu, 15 Jan 2015 22:59:04 +0000 (22:59 +0000)
Change-Id: I1bf1ab930a5c258f5fcc85ca3037692c71bf3cb2
Reviewed-on: https://go-review.googlesource.com/2870
Reviewed-by: Mikio Hara <mikioh.mikioh@gmail.com>
Reviewed-by: Minux Ma <minux@golang.org>
src/net/dnsclient_unix_test.go

index 1167c26b39dacbfb98863ad4bd5af2633e6dda49..40b78bda98a9a3e898c8e5c19fe30c6d9f933879 100644 (file)
@@ -57,13 +57,13 @@ var specialDomainNameTests = []struct {
        qtype uint16
        rcode int
 }{
-       // Name resoltion APIs and libraries should not recongnize the
+       // Name resolution APIs and libraries should not recognize the
        // followings as special.
        {"1.0.168.192.in-addr.arpa.", dnsTypePTR, dnsRcodeNameError},
        {"test.", dnsTypeALL, dnsRcodeNameError},
        {"example.com.", dnsTypeALL, dnsRcodeSuccess},
 
-       // Name resoltion APIs and libraries should recongnize the
+       // Name resolution APIs and libraries should recognize the
        // followings as special and should not send any queries.
        // Though, we test those names here for verifying nagative
        // answers at DNS query-response interaction level.