From 85deaf60776b686b550ed413c37fda9cc9615c05 Mon Sep 17 00:00:00 2001 From: Artyom Pervukhin Date: Fri, 18 Aug 2017 13:26:41 +0300 Subject: [PATCH] crypto/tls: fix docstring of Config.ClientSessionCache Closes #21519 Change-Id: I1247e9435de93aae7e4db2b6e8e5be1b010c296b Reviewed-on: https://go-review.googlesource.com/56832 Reviewed-by: Avelino Reviewed-by: Adam Langley --- src/crypto/tls/common.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/crypto/tls/common.go b/src/crypto/tls/common.go index 5860838dd2..13776486b1 100644 --- a/src/crypto/tls/common.go +++ b/src/crypto/tls/common.go @@ -471,8 +471,8 @@ type Config struct { // connections using that key are compromised. SessionTicketKey [32]byte - // SessionCache is a cache of ClientSessionState entries for TLS session - // resumption. + // ClientSessionCache is a cache of ClientSessionState entries for TLS + // session resumption. ClientSessionCache ClientSessionCache // MinVersion contains the minimum SSL/TLS version that is acceptable.