From e330ac547c4f748a4975ed6ec5cbf08dbffae338 Mon Sep 17 00:00:00 2001 From: Mariano Cano Date: Tue, 5 Feb 2019 17:29:28 -0800 Subject: [PATCH] Fix comment. --- ca/mutable_tls_config.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ca/mutable_tls_config.go b/ca/mutable_tls_config.go index 7a564a3e..eb3f4132 100644 --- a/ca/mutable_tls_config.go +++ b/ca/mutable_tls_config.go @@ -18,8 +18,8 @@ type mutableTLSConfig struct { mutRootCerts []*x509.Certificate } -// newMutableTLSConfig creates a new mutableTLSConfig using the passed one as -// the base one. +// newMutableTLSConfig creates a new mutableTLSConfig that will be later +// initialized with a tls.Config. func newMutableTLSConfig() *mutableTLSConfig { return &mutableTLSConfig{ clientCerts: []*x509.Certificate{},