]> Cypherpunks repositories - gostls13.git/commitdiff
doc/go1.1.html: document the moving of exp/... and old/....
authorRob Pike <r@golang.org>
Sat, 2 Mar 2013 19:55:25 +0000 (11:55 -0800)
committerRob Pike <r@golang.org>
Sat, 2 Mar 2013 19:55:25 +0000 (11:55 -0800)
R=golang-dev, minux.ma
CC=golang-dev
https://golang.org/cl/7445050

doc/go1.1.html

index b7e8ee9f0510da79b9d54d04a654d19d8f2a1d8a..e4f5202bc0fc4bbe3b157723137c270e5770947c 100644 (file)
@@ -182,4 +182,26 @@ that can be used to remove precision from a time before passing it to
 external storage.
 </p>
 
-TODO
+<h3 id="exp_old">Exp and old subtrees moved to go.exp subrepo</h3>
+
+<p>
+To make it easier for binary distributions to access them if desired, the <code>exp</code>
+and <code>old</code> source subtrees, which are not included in binary distributions,
+have been moved to the new <code>go.exp</code> subrepository at
+<code>code.google.com/p/go.exp</code>. To access the <code>ssa</code> package,
+for example, run
+</p>
+
+<pre>
+$ go get code.google.com/go.exp/ssa
+</pre>
+
+<p>
+and then in Go source,
+</p>
+
+<pre>
+import "code.google.com/go.exp/ssa"
+</pre>
+
+<h3 id="TODO">TODO</h3>