aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Gerrand <adg@golang.org>2012-02-15 14:20:21 +1100
committerAndrew Gerrand <adg@golang.org>2012-02-15 14:20:21 +1100
commiteccc22e542bf5161a789b9956caa4d500208ea1e (patch)
tree8422b4d63f965a224f33f5cbf25c8dbfe96876c0
parentd2f65a6461fbb96783ae2256f2f6f67668edf385 (diff)
downloadgo-eccc22e542bf5161a789b9956caa4d500208ea1e.tar.gz
go-eccc22e542bf5161a789b9956caa4d500208ea1e.zip
doc: fix snapshot notes
R=bradfitz, dsymonds CC=golang-dev https://golang.org/cl/5675056
-rw-r--r--doc/devel/weekly.html7
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/devel/weekly.html b/doc/devel/weekly.html
index b79f63facd..4816287752 100644
--- a/doc/devel/weekly.html
+++ b/doc/devel/weekly.html
@@ -22,9 +22,10 @@ This release includes some package changes that require changes to client code.
The flate, gzip and zlib's NewWriterXxx functions no longer return an error.
The compiler will flag all affected code which must then be updated by hand.
-The os package's Exec and Time functions were removed. Callers should use the
-os/exec package and time.Now instead. The ShellExpand function was renamed to
-ExpandEnv. The NewFile function now takes a uintptr.
+The os package's Exec and Time functions were removed. Callers should use
+syscall.Exec and time.Now instead. The ShellExpand function was renamed to
+ExpandEnv. The NewFile function now takes a uintptr and the *File.Fd method
+returns a uintptr.
The runtime package's Type type and its methods have been removed.
Use the reflect package instead.