diff --git a/doc/go1.15.html b/doc/go1.15.html
index 17e442d4c6..80f8828e9b 100644
--- a/doc/go1.15.html
+++ b/doc/go1.15.html
@@ -524,6 +524,17 @@ Do not send CLs removing the interior tags from such phrases.
fields OCSPResponse and SignedCertificateTimestamps
are now repopulated on client-side resumed connections.
+ tls.Conn
+ now returns an opaque error on permanently broken connections, wrapping
+ the temporary
+ net.Error. To access the
+ original net.Error, use
+ errors.As (or
+ errors.Unwrap) instead of a
+ type assertion.
+