diff --git a/doc/go1.5.html b/doc/go1.5.html
index 9c6e06d456..0ef5f7c819 100644
--- a/doc/go1.5.html
+++ b/doc/go1.5.html
@@ -130,7 +130,7 @@ The old names 6g, 8g and so on are gone; instead there
is just one binary, accessible as go tool compile,
that compiles Go source into binaries suitable for the architecture and operating system
specified by $GOARCH and $GOOS.
-Simlarly, there is now one linker (go tool link)
+Similarly, there is now one linker (go tool link)
and one assembler (go tool asm).
The linker was translated automatically from the old C implementation,
but the assembler is a new native Go implementation discussed
@@ -308,23 +308,36 @@ against incorrect and malicious inputs.
archive/zip package's
+Writer type now has a
+SetOffset
+method to specify the location within the output stream at which to write the archive.
Reader in the
+bufio package now has a
+Discard
+method to discard data from the input.
bytes package,
+the Buffer type
+now has a Cap method
+that reports the number of bytes allocated within the buffer.
+Similarly, both the bytes
+and strings packages,
+the Reader
+type now has a Size
+method that reports the original length of the underlying slice or string.
bytes and
+strings packages
+also now have a LastIndexByte
+function that locates the rightmost byte with that value in the argument.
DB type of the
+database/sql package
+now has a Stats method
+to retrieve database statistics.
fmt package,
-empty slices now produce no output with the %x verb
-even when width is applied. For slices the modifiers apply elementwise but in 1.4 if the
-slice was empty, they applied globally, an inconsistency.
-For instance, in Go 1.4 an empty byte slice prints '0000' with verb "%04x"; in 1.5 it prints nothing.
+The encoding/base64 package
+now supports unpadded encodings through two new encoding variables,
+RawStdEncoding and
+RawURLEncoding.
<int Value>.
EmptyStmt type
+in the go/ast package now
+has a boolean Implicit field that records whether the
+semicolon was implicitly added or was present in the source.
Int type.
mime package adds an
+ExtensionsByType
+function that returns the MIME extensions know to be associated with a given MIME type.
bytes
but is otherwise unnecessary as strings support comparison natively.
WaitGroup function in
+package sync
+now diagnoses code that races a call to Add
+against a return from Wait.
+If it detects this condition, WaitGroup panics.
+syscall package,
the Linux SysProcAttr struct now has a