doc/go1.1.html | 45 ++++++++++++++++++++++++++++++---------------
diff --git a/doc/go1.1.html b/doc/go1.1.html
index b242e0734bcd38038d7daaf2b31dd91574b5594d..6256ae2010a30912ecd75fae3e920fd22587428a 100644
--- a/doc/go1.1.html
+++ b/doc/go1.1.html
@@ -694,6 +694,36 @@ go.text, where the Unicode APIs and other text-related packages will
be developed.
+There are three new packages. +
+ +go/format package provides
+a convenient way for a program to access the formatting capabilities of the
+go fmt command.
+It has two functions,
+Node to format a Go parser
+Node,
+and
+Source
+to reformat arbitrary Go source code into the standard format as provided by the
+go fmt command.
+net/http/cookiejar package provides the basics for managing HTTP cookies.
+runtime/race package provides low-level facilities for data race detection.
+It is internal to the race detector and does not otherwise export any user-visible functionality.
+
@@ -794,17 +824,6 @@ the parser now keeps better track of stylized annotations such as TODO(joe)
throughout the code,
information that the godoc
command can filter or present according to the value of the -notes flag.
-
-
-
go/format, provides
-a convenient way for a program to access the formatting capabilities of gofmt.
-It has two functions,
-Node to format a Go parser
-Node,
-and
-Source
-to format arbitrary Go source code.
CancelRequest.
Finally, the Transport is now more aggressive at closing TCP connections when
a Response.Body is closed before
being fully consumed.
-net/http/cookiejar package provides the basics for managing HTTP cookies.