]> Cypherpunks repositories - gostls13.git/commitdiff
doc: Proper default value for the $GOPATH.
authorGabriel Nicolas Avellaneda <avellaneda.gabriel@gmail.com>
Tue, 27 Jun 2017 21:00:59 +0000 (18:00 -0300)
committerBrad Fitzpatrick <bradfitz@golang.org>
Wed, 28 Jun 2017 05:47:47 +0000 (05:47 +0000)
It should be $HOME/go instead of $HOME/work

Change-Id: I22e0a89deff30f935c3e25a237d6c0c161103339
Reviewed-on: https://go-review.googlesource.com/46890
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
doc/code.html

index ee9988b0a9452ff90538240cdc01c326ebfafd9a..f22e6b4919ec1849ded2c367a14347a49b6bc81f 100644 (file)
@@ -270,7 +270,7 @@ This command builds the <code>hello</code> command, producing an executable
 binary. It then installs that binary to the workspace's <code>bin</code>
 directory as <code>hello</code> (or, under Windows, <code>hello.exe</code>).
 In our example, that will be <code>$GOPATH/bin/hello</code>, which is
-<code>$HOME/work/bin/hello</code>.
+<code>$HOME/go/bin/hello</code>.
 </p>
 
 <p>