From e04ebaa3645d9f52cd6abcbed4da9f55b41aff8b Mon Sep 17 00:00:00 2001 From: Patrick Schaub Date: Fri, 21 Feb 2020 17:48:05 +0100 Subject: [PATCH] Fix typo in the godoc of TLS option MaxVersion --- pkg/tls/certificate.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/tls/certificate.go b/pkg/tls/certificate.go index 81624ed6c..37102c39c 100644 --- a/pkg/tls/certificate.go +++ b/pkg/tls/certificate.go @@ -22,7 +22,7 @@ var ( `VersionTLS13`: tls.VersionTLS13, } - // MaxVersion Map of allowed TLS minimum versions + // MaxVersion Map of allowed TLS maximum versions MaxVersion = map[string]uint16{ `VersionTLS10`: tls.VersionTLS10, `VersionTLS11`: tls.VersionTLS11,