diff --git a/commands/getCerts.go b/commands/getCerts.go index b0ee327e4..9f706d06d 100644 --- a/commands/getCerts.go +++ b/commands/getCerts.go @@ -207,7 +207,7 @@ func validateCertificateList(certs []*acme.CertConfig, cfg *models.DNSConfig) er for _, cert := range certs { name := cert.CertName if !validCertNamesRegex.MatchString(name) { - return fmt.Errorf("'%s' is not a valud certificate name. Only alphanumerics, - and _ allowed", name) + return fmt.Errorf("'%s' is not a valid certificate name. Only alphanumerics, - and _ allowed", name) } sans := cert.Names if len(sans) > 100 {