diff options
author | Andrew Gerrand <adg@golang.org> | 2014-11-10 09:15:57 +1100 |
---|---|---|
committer | Andrew Gerrand <adg@golang.org> | 2014-11-10 09:15:57 +1100 |
commit | 7f0be1f781a523b5acafb527ca123f5b0eac1536 (patch) | |
tree | 0d2aad29792e0b8c2f2fc74e2f07c8ba1109899c /doc/install-source.html | |
parent | 68e2dbe8b7748ba4e9adcad61627da32e1f2141a (diff) | |
download | go-git-7f0be1f781a523b5acafb527ca123f5b0eac1536.tar.gz |
all: use golang.org/x/... import paths
LGTM=rsc, r
R=r, rsc
CC=golang-codereview, golang-codereviews
https://golang.org/cl/168050043
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 82859b50fb..f53deb404c 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> |