diff --git a/doc/go1.11.html b/doc/go1.11.html index 8b49e55990e..72d35250eaa 100644 --- a/doc/go1.11.html +++ b/doc/go1.11.html @@ -463,7 +463,7 @@ for k := range m {
encoding/asn1

- TODO: https://golang.org/cl/110561: allow Marshaling and Unmarshaling private tag class + Marshal and Unmarshal now support private class annotations for fields.

@@ -518,7 +518,8 @@ for k := range m {
image/gif

- TODO: https://golang.org/cl/93076: support non-looping animated gifs (LoopCount=-1) + Non-looping animated GIFs are now supported. They are denoted by having a + LoopCount of -1.

@@ -526,7 +527,10 @@ for k := range m {
io/ioutil

- TODO: https://golang.org/cl/105675: change TempFile prefix to a pattern + If the string given to TempFile includes a "*", the random string + replaces the "*". For example "myname.*.bat" will result in a random + filename such as "myname.123456.bat". If no "*' is included the + old behavior is retained, and the random digits are appended to the end.