From: Rob Pike Date: Sat, 2 Mar 2013 19:55:25 +0000 (-0800) Subject: doc/go1.1.html: document the moving of exp/... and old/.... X-Git-Tag: go1.1rc2~719 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=5aacf436511d32e43f27fada87681aea2d391a45;p=gostls13.git doc/go1.1.html: document the moving of exp/... and old/.... R=golang-dev, minux.ma CC=golang-dev https://golang.org/cl/7445050 --- diff --git a/doc/go1.1.html b/doc/go1.1.html index b7e8ee9f05..e4f5202bc0 100644 --- a/doc/go1.1.html +++ b/doc/go1.1.html @@ -182,4 +182,26 @@ that can be used to remove precision from a time before passing it to external storage.

-TODO +

Exp and old subtrees moved to go.exp subrepo

+ +

+To make it easier for binary distributions to access them if desired, the exp +and old source subtrees, which are not included in binary distributions, +have been moved to the new go.exp subrepository at +code.google.com/p/go.exp. To access the ssa package, +for example, run +

+ +
+$ go get code.google.com/go.exp/ssa
+
+ +

+and then in Go source, +

+ +
+import "code.google.com/go.exp/ssa"
+
+ +

TODO