From 5aacf436511d32e43f27fada87681aea2d391a45 Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Sat, 2 Mar 2013 11:55:25 -0800 Subject: [PATCH] doc/go1.1.html: document the moving of exp/... and old/.... R=golang-dev, minux.ma CC=golang-dev https://golang.org/cl/7445050 --- doc/go1.1.html | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) 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

-- 2.50.0