From 80157b5144191e88b18937eb9b6ee5b6046f3f20 Mon Sep 17 00:00:00 2001 From: Kevin Burke Date: Wed, 24 Mar 2021 16:02:24 -0700 Subject: [PATCH] crypto/x509: fix spelling error Change-Id: Ieb1900531f42acf2c8b98ac89fceb8b87c8e5d0c Reviewed-on: https://go-review.googlesource.com/c/go/+/304609 Reviewed-by: Roland Shoemaker Trust: Kevin Burke --- src/crypto/x509/verify.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crypto/x509/verify.go b/src/crypto/x509/verify.go index 46afb2698a..2432d9bb86 100644 --- a/src/crypto/x509/verify.go +++ b/src/crypto/x509/verify.go @@ -837,7 +837,7 @@ func appendToFreshChain(chain []*Certificate, cert *Certificate) []*Certificate } // maxChainSignatureChecks is the maximum number of CheckSignatureFrom calls -// that an invocation of buildChains will (tranistively) make. Most chains are +// that an invocation of buildChains will (transitively) make. Most chains are // less than 15 certificates long, so this leaves space for multiple chains and // for failed checks due to different intermediates having the same Subject. const maxChainSignatureChecks = 100 -- 2.50.0