aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlberto Donizetti <alb.donizetti@gmail.com>2019-01-19 18:24:32 +0100
committerBrad Fitzpatrick <bradfitz@golang.org>2019-01-30 17:54:01 +0000
commit3a91061504818fec41c3896de46ae61ff8709e94 (patch)
treeb4f24d6a519594dfa31bcb1a7be233f792d2f32a
parent56c9f8e8cfecafda3bd9f58c6421cd253a770d54 (diff)
downloadgo-3a91061504818fec41c3896de46ae61ff8709e94.tar.gz
go-3a91061504818fec41c3896de46ae61ff8709e94.zip
doc: note go tool tour removal in 1.12 release notes
Note the removal of the go tool tour command in the Go 1.12 release notes. Updates #24819 Change-Id: I258ab9401ea2cc06a83328c67299376fcf23c980 Reviewed-on: https://go-review.googlesource.com/c/158618 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> Reviewed-by: Emmanuel Odeke <emm.odeke@gmail.com> Reviewed-by: Andrew Bonventre <andybons@golang.org>
-rw-r--r--doc/go1.12.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/go1.12.html b/doc/go1.12.html
index 20b3e343d1..fbe0c6a17c 100644
--- a/doc/go1.12.html
+++ b/doc/go1.12.html
@@ -113,6 +113,18 @@ go vet -vettool=$(which shadow)
</pre>
</p>
+<h3 id="tour">Tour</h3>
+
+<p> <!-- CL 152657 -->
+The Go tour is no longer included in the main binary distribution. To
+run the tour locally, instead of running <code>go</code> <code>tool</code> <code>tour</code>,
+manually install it:
+<pre>
+go install golang.org/x/tour
+tour
+</pre>
+</p>
+
<h3 id="gocache">Build cache requirement</h3>
<p>