aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOling Cat <olingcat@gmail.com>2013-04-23 13:13:51 -0700
committerBrad Fitzpatrick <bradfitz@golang.org>2013-04-23 13:13:51 -0700
commite680710d0e3e8c335f6cf7c63f205bf569a3ef5a (patch)
tree1d8bde5dcfaa7f5654d54fd464b621145ab04c1d
parent2dd0c03427afc3a6142405085e50ffe5545cb2fd (diff)
downloadgo-e680710d0e3e8c335f6cf7c63f205bf569a3ef5a.tar.gz
go-e680710d0e3e8c335f6cf7c63f205bf569a3ef5a.zip
doc/code.html: remove doubled word; modify the tab to space.
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/8919043
-rw-r--r--doc/code.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/code.html b/doc/code.html
index 2d63d4dc91..f64dd6a2ad 100644
--- a/doc/code.html
+++ b/doc/code.html
@@ -76,11 +76,11 @@ src/
oauth_test.go # test source
github.com/nf/
streak/
- .git/ # git repository metadata
+ .git/ # git repository metadata
oauth.go # command source
streak.go # command source
todo/
- .git/ # git repository metadata
+ .git/ # git repository metadata
task/
task.go # package source
todo.go # command source
@@ -471,7 +471,7 @@ func TestSqrt(t *testing.T) {
const in, out = 4, 2
if x := Sqrt(in); x != out {
t.Errorf("Sqrt(%v) = %v, want %v", in, x, out)
- }
+ }
}
</pre>
@@ -528,7 +528,7 @@ fetch and behaves the same as <code>go install</code>.)
<p>
After issuing the above <code>go get</code> command, the workspace directory
-tree should now now look like this:
+tree should now look like this:
</p>
<pre>