From 3a1ba2d5ac92ee15996ea38ca6b76b7407d41d00 Mon Sep 17 00:00:00 2001 From: crapStone Date: Tue, 30 Apr 2024 23:30:59 +0200 Subject: [PATCH] fix spelling --- server/certificates/certificates.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/certificates/certificates.go b/server/certificates/certificates.go index 12e2e13..14f61cb 100644 --- a/server/certificates/certificates.go +++ b/server/certificates/certificates.go @@ -408,7 +408,7 @@ func MaintainCertDB(ctx context.Context, interval time.Duration, acmeClient *Acm // leaf returns the parsed leaf certificate, either from c.Leaf or by parsing // the corresponding c.Certificate[0]. -// After successfuly parsing the cert c.Leaf gets set to the parsed cert. +// After successfully parsing the cert c.Leaf gets set to the parsed cert. func leaf(c *tls.Certificate) (*x509.Certificate, error) { if c.Leaf != nil { return c.Leaf, nil