fix: correct drifted citation for tls.Config.Clone

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.
This commit is contained in:
Rodin
2026-05-06 17:21:18 -07:00
parent 52503d24c2
commit 0de5f54365
+1 -1
View File
@@ -903,7 +903,7 @@ of immutable-after-use configs.
### Source: ### 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 ```go
// Clone returns a shallow clone of c or nil if c is nil. It is safe to clone // Clone returns a shallow clone of c or nil if c is nil. It is safe to clone