From 0de5f543654b6c60f98ed4c0e9fcb9f25c401c9d Mon Sep 17 00:00:00 2001 From: Rodin Date: Wed, 6 May 2026 17:21:18 -0700 Subject: [PATCH] fix: correct drifted citation for tls.Config.Clone MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit crypto/tls/common.go#L925 was wrong; the Clone() method is at L996 in commit 17bd5ab8c650155dd2bd09f7005726552639eea0. Audited all citations across all pattern .md files — only this one had drifted. All others verified OK against the pinned golang/go commit. --- patterns/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patterns/configuration.md b/patterns/configuration.md index cb1210f..a69730f 100644 --- a/patterns/configuration.md +++ b/patterns/configuration.md @@ -903,7 +903,7 @@ of immutable-after-use configs. ### Source: -[crypto/tls/common.go#L925](https://github.com/golang/go/blob/17bd5ab8c650155dd2bd09f7005726552639eea0/src/crypto/tls/common.go#L925) (tls.Config.Clone) +[crypto/tls/common.go#L996](https://github.com/golang/go/blob/17bd5ab8c650155dd2bd09f7005726552639eea0/src/crypto/tls/common.go#L996) (tls.Config.Clone) ```go // Clone returns a shallow clone of c or nil if c is nil. It is safe to clone