summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorKeith Randall <khr@golang.org>2014-05-23 17:39:58 -0700
committerKeith Randall <khr@golang.org>2014-05-23 17:39:58 -0700
commit4b3019b17ce8fcf0b9fab916897aaee9b24ce7fc (patch)
treee529459e2ceebe48b7482ab93d854e65e30bf5c1 /doc
parent05cc78d8d32f6af6fc4373e10da0b4a12f0a1ad4 (diff)
downloadgo-git-4b3019b17ce8fcf0b9fab916897aaee9b24ce7fc.tar.gz
doc: mention that reflect.SetMapIndex no longer panics
when deleting from a nil map. See issue 8051. LGTM=r R=golang-codereviews, r, khr CC=golang-codereviews https://golang.org/cl/96540051
Diffstat (limited to 'doc')
-rw-r--r--doc/go1.3.html6
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/go1.3.html b/doc/go1.3.html
index d98cdf629f..9a9f9f8d46 100644
--- a/doc/go1.3.html
+++ b/doc/go1.3.html
@@ -510,6 +510,12 @@ when the binary's file name contains no path separators.
</li>
<li>
+The <a href="/pkg/reflect/#Value.SetMapIndex"><code>SetMapIndex</code></a>
+function in the <a href="/pkg/reflect/"><code>reflect</code></a> package
+no longer panics when deleting from a <code>nil</code> map.
+</li>
+
+<li>
If the main goroutine calls
<a href="/pkg/runtime/#Goexit"><code>runtime.Goexit</code></a>
and all other goroutines finish execution, the program now always crashes,