diff --git a/doc/go1.6.html b/doc/go1.6.html
index b4ac96ef96..fe079301cd 100644
--- a/doc/go1.6.html
+++ b/doc/go1.6.html
@@ -685,7 +685,8 @@ First, the
FileServer now sorts its generated directory listings by file name.
Second, the
Client now allows user code to set the
-Expect: 100-continue header.
+Expect: 100-continue header (see
+Transport.ExpectContinueTimeout).
Third, there are
four new error codes from RFC 6585:
StatusPreconditionRequired (428),
@@ -693,6 +694,14 @@ Third, there are
StatusRequestHeaderFieldsTooLarge (431),
and
StatusNetworkAuthenticationRequired (511).
+Fourth, the implementation and documentation of
+CloseNotifier
+has been substantially changed.
+The Hijacker
+interface now works correctly on connections that have previously
+been used with CloseNotifier.
+The documentation now describes when CloseNotifier
+is expected to work.