Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(119)

Unified Diff: doc/devel/weekly.html

Issue 5453072: code review 5453072: doc: fix weekly.2011-12-06 release notes typo (Closed)
Patch Set: diff -r 29e9683fd222 https://go.googlecode.com/hg Created 13 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « .hgtags ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
« no previous file with comments | « .hgtags ('k') | no next file » | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b