From 92ed20909982bc411971291622e8d379e1627a0b Mon Sep 17 00:00:00 2001 From: Shawn Smith Date: Fri, 11 Aug 2017 02:47:37 +0900 Subject: [PATCH] fix typo (#419) --- acme/dns_challenge.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acme/dns_challenge.go b/acme/dns_challenge.go index 30f2170f..7c4cb80d 100644 --- a/acme/dns_challenge.go +++ b/acme/dns_challenge.go @@ -194,7 +194,7 @@ func dnsQuery(fqdn string, rtype uint16, nameservers []string, recursive bool) ( if err == dns.ErrTruncated { tcp := &dns.Client{Net: "tcp", Timeout: DNSTimeout} - // If the TCP request suceeds, the err will reset to nil + // If the TCP request succeeds, the err will reset to nil in, _, err = tcp.Exchange(m, ns) }