Skip to content

Commit

Permalink
Fix typo in "retry"
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeHandle committed Apr 12, 2016
1 parent dbad97e commit a684bab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion acme/dns_challenge.go
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ func dnsQuery(fqdn string, rtype uint16, nameservers []string, recursive bool) (
m.RecursionDesired = false
}

// Will rety the request based on the number of servers (n+1)
// Will retry the request based on the number of servers (n+1)
for i := 1; i <= len(nameservers)+1; i++ {
ns := nameservers[i%len(nameservers)]
in, err = dns.Exchange(m, ns)
Expand Down

0 comments on commit a684bab

Please sign in to comment.