From a23289899c434828453d37034db12b968d3b7703 Mon Sep 17 00:00:00 2001 From: xenolf Date: Mon, 7 Dec 2015 16:58:01 +0100 Subject: [PATCH] Fix typo --- acme/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acme/client.go b/acme/client.go index ae67b897..67449e96 100644 --- a/acme/client.go +++ b/acme/client.go @@ -233,7 +233,7 @@ func (c *Client) ObtainCertificates(domains []string, bundle bool) ([]Certificat // If bundle is true, the []byte contains both the issuer certificate and // your issued certificate as a bundle. // This function will never return a partial certificate. If one domain in the list fails, -// the while certificate will fail. +// the whole certificate will fail. func (c *Client) ObtainSANCertificate(domains []string, bundle bool) (CertificateResource, map[string]error) { if bundle { logf("[INFO] acme: Obtaining bundled SAN certificate for %v", strings.Join(domains, ", "))