From 5488723473c973c192b0db10843d35565041385b Mon Sep 17 00:00:00 2001 From: Nikolay Edigaryev Date: Thu, 8 Jun 2023 01:42:18 +0400 Subject: [PATCH] Fix typo in x509.SetFallbackRoots documentation Add a missing space between the environment variables, see also https://github.com/golang/go/issues/43958#issuecomment-1317868626. --- src/crypto/x509/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crypto/x509/root.go b/src/crypto/x509/root.go index b454af2c4c19d2..1b68a69882e151 100644 --- a/src/crypto/x509/root.go +++ b/src/crypto/x509/root.go @@ -44,7 +44,7 @@ var x509usefallbackroots = godebug.New("x509usefallbackroots") // panic. // // The fallback behavior can be forced on all platforms, even when there is a -// system certificate pool, by setting GODEBUG=x509usefallbackroots=1 (note that +// system certificate pool, by setting GODEBUG=x509 usefallbackroots=1 (note that // on Windows and macOS this will disable usage of the platform verification // APIs and cause the pure Go verifier to be used). Setting // x509usefallbackroots=1 without calling SetFallbackRoots has no effect.