]> Cypherpunks repositories - gostls13.git/commitdiff
doc: update go tour installation instructions
authorEdward Muller <edwardam@interlix.com>
Wed, 31 Aug 2016 02:14:46 +0000 (19:14 -0700)
committerBrad Fitzpatrick <bradfitz@golang.org>
Wed, 31 Aug 2016 18:54:04 +0000 (18:54 +0000)
Fixes #16933

Change-Id: I2054abd28bc555b018309934774fc4ecc44826b3
Reviewed-on: https://go-review.googlesource.com/28217
Reviewed-by: Emmanuel Odeke <emm.odeke@gmail.com>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
doc/docs.html

index 7eb3a3ad263a76c0da3fb1e0b1154f6290c43d14..1ccd1f3fe71482d1458d843feeabcdc04c73c80d 100644 (file)
@@ -40,7 +40,13 @@ The first section covers basic syntax and data structures; the second discusses
 methods and interfaces; and the third introduces Go's concurrency primitives.
 Each section concludes with a few exercises so you can practice what you've
 learned. You can <a href="//tour.golang.org/">take the tour online</a> or
-<a href="//code.google.com/p/go-tour/">install it locally</a>.
+install it locally with:
+</p>
+<p>
+<pre>
+$ go get golang.org/x/tour/gotour
+</pre>
+This will place the <code>gotour</code> binary in your workspace's <code>bin</code> directory.
 </p>
 
 <h3 id="code"><a href="code.html">How to write Go code</a></h3>