Skip to content

Commit

Permalink
doc: update suggested Go installation version
Browse files Browse the repository at this point in the history
Previously the docs suggested downloading 1.7.2 (no good) or 1.7.3 (has
security flaw).

Change-Id: Ifabe85908df8d6591c0957ef4bb1b800fc145793
Reviewed-on: https://go-review.googlesource.com/33808
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
  • Loading branch information
kevinburke authored and bradfitz committed Dec 2, 2016
1 parent f52e205 commit 64969c8
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions doc/install-source.html
Expand Up @@ -212,7 +212,7 @@ <h2 id="fetch">Fetch the repository</h2>
Change to the directory that will be its parent
and make sure the <code>go</code> directory does not exist.
Then clone the repository and check out the latest release tag
(<code class="versionTag">go1.7.2</code>, for example):</p>
(<code class="versionTag">go1.7.4</code>, for example):</p>

<pre>
$ git clone https://go.googlesource.com/go
Expand Down Expand Up @@ -329,7 +329,7 @@ <h2 id="gopath">Set up your work environment</h2>
</p>

<p>
The <a href="/doc/code.html">How to Write Go Code</a> document
The <a href="/doc/code.html">How to Write Go Code</a> document
provides <b>essential setup instructions</b> for using the Go tools.
</p>

Expand All @@ -355,7 +355,7 @@ <h2 id="tools">Install additional tools</h2>
</pre>

<p>
To install these tools, the <code>go</code> <code>get</code> command requires
To install these tools, the <code>go</code> <code>get</code> command requires
that <a href="#git">Git</a> be installed locally.
</p>

Expand Down Expand Up @@ -400,7 +400,7 @@ <h2 id="releases">Keeping up with releases</h2>
<a href="//groups.google.com/group/golang-announce">golang-announce</a>
mailing list.
Each announcement mentions the latest release tag, for instance,
<code class="versionTag">go1.7.2</code>.
<code class="versionTag">go1.7.4</code>.
</p>

<p>
Expand Down Expand Up @@ -443,7 +443,7 @@ <h2 id="environment">Optional environment variables</h2>
<code>$GOROOT</code> is not set explicitly.
It defaults to the value of <code>$GOROOT</code>.
If you want to build the Go tree in one location
but move it elsewhere after the build, set
but move it elsewhere after the build, set
<code>$GOROOT_FINAL</code> to the eventual location.
</p>

Expand Down Expand Up @@ -566,7 +566,7 @@ <h2 id="environment">Optional environment variables</h2>
Valid choices are the same as for <code>$GOOS</code> and
<code>$GOARCH</code>, listed above.
The specified values must be compatible with the local system.
For example, you should not set <code>$GOHOSTARCH</code> to
For example, you should not set <code>$GOHOSTARCH</code> to
<code>arm</code> on an x86 system.
</p>

Expand Down Expand Up @@ -627,7 +627,7 @@ <h2 id="environment">Optional environment variables</h2>
<p>
If you choose to override the defaults,
set these variables in your shell profile (<code>$HOME/.bashrc</code>,
<code>$HOME/.profile</code>, or equivalent). The settings might look
<code>$HOME/.profile</code>, or equivalent). The settings might look
something like this:
</p>

Expand Down

0 comments on commit 64969c8

Please sign in to comment.