diff --git a/doc/go1.3.html b/doc/go1.3.html
index 2c37eb63cf..6b750493f9 100644
--- a/doc/go1.3.html
+++ b/doc/go1.3.html
@@ -227,9 +227,18 @@ The formatted print functions of the fmt
package now define %
as a synonym for %f
when printing floating-point values.
- TODO: net/http: add Request.TLS (CL 52660047)
+
+The net/http
package now exposes the
+the properties of a TLS connection used to make a client request in the new
+Response.TLS
field.
+
- TODO: net/http: add Server.ErrorLog; log and test TLS handshake errors (CL 70250044)
+
+The net/http
package now
+allows setting an optional server error logger
+with Server.ErrorLog
.
+The default is still that all errors go to stderr.
+
TODO: net/http: add Server.SetKeepAlivesEnabled (CL 69670043)