diff options
author | Gabriel Nicolas Avellaneda <avellaneda.gabriel@gmail.com> | 2017-06-27 18:00:59 -0300 |
---|---|---|
committer | Brad Fitzpatrick <bradfitz@golang.org> | 2017-06-28 05:47:47 +0000 |
commit | 1a56a27c58cb7c59d8b073a78b96833f9ebe4b75 (patch) | |
tree | c78e1527bf2b7e9f01c13582fe45cfdf7b2cfb64 /doc/code.html | |
parent | e7823d656e8118534d9ddbd6d2b948c6fdad0549 (diff) | |
download | go-git-1a56a27c58cb7c59d8b073a78b96833f9ebe4b75.tar.gz |
doc: Proper default value for the $GOPATH.
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>
Diffstat (limited to 'doc/code.html')
-rw-r--r-- | doc/code.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/code.html b/doc/code.html index ee9988b0a9..f22e6b4919 100644 --- a/doc/code.html +++ b/doc/code.html @@ -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> |