diff options
author | Tianon Gravi <admwiggin@gmail.com> | 2015-01-15 11:54:00 -0700 |
---|---|---|
committer | Tianon Gravi <admwiggin@gmail.com> | 2015-01-15 11:54:00 -0700 |
commit | f154da9e12608589e8d5f0508f908a0c3e88a1bb (patch) | |
tree | f8255d51e10c6f1e0ed69702200b966c9556a431 /doc/install-source.html | |
parent | 8d8329ed5dfb9622c82a9fbec6fd99a580f9c9f6 (diff) | |
download | golang-f154da9e12608589e8d5f0508f908a0c3e88a1bb.tar.gz |
Imported Upstream version 1.4upstream/1.4
Diffstat (limited to 'doc/install-source.html')
-rw-r--r-- | doc/install-source.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/install-source.html b/doc/install-source.html index 82859b50f..f53deb404 100644 --- a/doc/install-source.html +++ b/doc/install-source.html @@ -241,12 +241,12 @@ provides <b>essential setup instructions</b> for using the Go tools. <p> The source code for several Go tools (including <a href="/cmd/godoc/">godoc</a>) -is kept in <a href="https://code.google.com/p/go.tools">the go.tools repository</a>. +is kept in <a href="https://golang.org/x/tools">the go.tools repository</a>. To install all of them, run the <code>go</code> <code>get</code> command: </p> <pre> -$ go get code.google.com/p/go.tools/cmd/... +$ go get golang.org/x/tools/cmd/... </pre> <p> @@ -254,7 +254,7 @@ Or if you just want to install a specific command (<code>godoc</code> in this ca </p> <pre> -$ go get code.google.com/p/go.tools/cmd/godoc +$ go get golang.org/x/tools/cmd/godoc </pre> <p> |