Index: doc/devel/weekly.html |
=================================================================== |
--- a/doc/devel/weekly.html |
+++ b/doc/devel/weekly.html |
@@ -23,9 +23,9 @@ |
Type elision in arrays, slices, or maps of composite literals has been |
extended to include pointers to composite literals. Code like this |
- var t = []&T{&T{}, &T{}} |
+ var t = []*T{&T{}, &T{}} |
may now be written as |
- var t = []&T{{}, {}} |
+ var t = []*T{{}, {}} |
You can use gofmt -s to simplify such code. |
The strconv package has been given a more idiomatic and efficient interface. |