summaryrefslogtreecommitdiff
path: root/modules/caddytls/acmeissuer.go
diff options
context:
space:
mode:
authorChristoffer Andersson <christoffer@valdoo.se>2020-04-25 18:34:56 +0200
committerGitHub <noreply@github.com>2020-04-25 10:34:56 -0600
commita6761153cbbf4547b9c0a76656d74f1401067205 (patch)
treeb9f1f772684d55441d4b76099ce89ababe493f0a /modules/caddytls/acmeissuer.go
parent02845bc9fdc3e9189d44f3bd30e8609cd59c97dd (diff)
Fix misspelling in onDemandAskRequest error (#3308)
Diffstat (limited to 'modules/caddytls/acmeissuer.go')
-rw-r--r--modules/caddytls/acmeissuer.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/caddytls/acmeissuer.go b/modules/caddytls/acmeissuer.go
index 8c52625..854e6d5 100644
--- a/modules/caddytls/acmeissuer.go
+++ b/modules/caddytls/acmeissuer.go
@@ -206,7 +206,7 @@ func onDemandAskRequest(ask string, name string) error {
resp, err := onDemandAskClient.Get(askURL.String())
if err != nil {
- return fmt.Errorf("error checking %v to deterine if certificate for hostname '%s' should be allowed: %v",
+ return fmt.Errorf("error checking %v to determine if certificate for hostname '%s' should be allowed: %v",
ask, name, err)
}
resp.Body.Close()