]> Cypherpunks repositories - gostls13.git/commitdiff
doc/code.html: remove doubled word; modify the tab to space.
authorOling Cat <olingcat@gmail.com>
Tue, 23 Apr 2013 20:13:51 +0000 (13:13 -0700)
committerBrad Fitzpatrick <bradfitz@golang.org>
Tue, 23 Apr 2013 20:13:51 +0000 (13:13 -0700)
R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/8919043

doc/code.html

index 2d63d4dc919d50c7a7962b9389a9e7cd8dff297f..f64dd6a2ad19d8bdb7c065d0f4ac9d472b91bc51 100644 (file)
@@ -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>