From abf5fc32a3417ca95800bf1d4c8cef2030cf8782 Mon Sep 17 00:00:00 2001 From: Mariano Cano Date: Tue, 29 Mar 2022 14:26:17 -0700 Subject: [PATCH] Format comment. --- cas/apiv1/options.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cas/apiv1/options.go b/cas/apiv1/options.go index 50c3a2be..3fc34208 100644 --- a/cas/apiv1/options.go +++ b/cas/apiv1/options.go @@ -32,13 +32,13 @@ type Options struct { CredentialsFile string `json:"credentialsFile,omitempty"` // CertificateChain contains the issuer certificate, along with any other - // bundled certificates to be returned in the chain for consumers. It is - // used used in SoftCAS, and is configured in the crt property of the - // ca.json. + // bundled certificates to be returned in the chain to consumers. It is used + // used in SoftCAS and it is configured in the crt property of the ca.json. CertificateChain []*x509.Certificate `json:"-"` - // Signer is the private key or a KMS signer for the issuer certificate. It is used in - // SoftCAS and it is configured in the key property of the ca.json. + // Signer is the private key or a KMS signer for the issuer certificate. It + // is used in SoftCAS and it is configured in the key property of the + // ca.json. Signer crypto.Signer `json:"-"` // CertificateSigner combines CertificateChain and Signer in a callback that