Commit e680710d authored by Oling Cat's avatar Oling Cat Committed by Brad Fitzpatrick

doc/code.html: remove doubled word; modify the tab to space.

R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/8919043
parent 2dd0c034
...@@ -76,11 +76,11 @@ src/ ...@@ -76,11 +76,11 @@ src/
oauth_test.go # test source oauth_test.go # test source
github.com/nf/ github.com/nf/
streak/ streak/
.git/ # git repository metadata .git/ # git repository metadata
oauth.go # command source oauth.go # command source
streak.go # command source streak.go # command source
todo/ todo/
.git/ # git repository metadata .git/ # git repository metadata
task/ task/
task.go # package source task.go # package source
todo.go # command source todo.go # command source
...@@ -471,7 +471,7 @@ func TestSqrt(t *testing.T) { ...@@ -471,7 +471,7 @@ func TestSqrt(t *testing.T) {
const in, out = 4, 2 const in, out = 4, 2
if x := Sqrt(in); x != out { if x := Sqrt(in); x != out {
t.Errorf("Sqrt(%v) = %v, want %v", in, x, out) t.Errorf("Sqrt(%v) = %v, want %v", in, x, out)
} }
} }
</pre> </pre>
...@@ -528,7 +528,7 @@ fetch and behaves the same as <code>go install</code>.) ...@@ -528,7 +528,7 @@ fetch and behaves the same as <code>go install</code>.)
<p> <p>
After issuing the above <code>go get</code> command, the workspace directory 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> </p>
<pre> <pre>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment