From f1773489fcadfd0238c8205a6d731863964a855c Mon Sep 17 00:00:00 2001 From: Mariano Cano Date: Fri, 31 Jul 2020 10:45:59 -0700 Subject: [PATCH] Fix comment. --- acme/order.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/acme/order.go b/acme/order.go index 99dffb89..29bbfe39 100644 --- a/acme/order.go +++ b/acme/order.go @@ -301,8 +301,8 @@ func (o *order) finalize(db nosql.DB, csr *x509.CertificateRequest, auth SignAut // Validate identifier names against CSR alternative names. // - // Note that with certificate templates we are not going to check for the no - // presence of other SANs as they will only be set if the templates allows + // Note that with certificate templates we are not going to check for the + // absence of other SANs as they will only be set if the templates allows // them. if len(csr.DNSNames) != len(orderNames) { return nil, BadCSRErr(errors.Errorf("CSR names do not match identifiers exactly: CSR names = %v, Order names = %v", csr.DNSNames, orderNames))