From a076513123ca87590720ceeb906d3fb653304ec3 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Thu, 5 Jan 2023 17:08:07 +0100 Subject: [PATCH] crypto/tls: fix typo in cacheEntry godoc Change-Id: Idcea184a5b0c205efd3c91c60b5d954424f37679 Reviewed-on: https://go-review.googlesource.com/c/go/+/460540 Run-TryBot: Tobias Klauser Reviewed-by: Filippo Valsorda Reviewed-by: Heschi Kreinick Reviewed-by: Ian Lance Taylor TryBot-Result: Gopher Robot Auto-Submit: Tobias Klauser --- cache.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cache.go b/cache.go index 2bdf2d9..fc8f2c0 100644 --- a/cache.go +++ b/cache.go @@ -27,7 +27,7 @@ type cacheEntry struct { // to the certificate in the cache is decremented. Once the number of references // reaches zero, the entry is evicted from the cache. // -// The main difference between this implmentation and CRYPTO_BUFFER_POOL is that +// The main difference between this implementation and CRYPTO_BUFFER_POOL is that // CRYPTO_BUFFER_POOL is a more generic structure which supports blobs of data, // rather than specific structures. Since we only care about x509.Certificates, // certCache is implemented as a specific cache, rather than a generic one.