]> Cypherpunks repositories - gostls13.git/commitdiff
edit simple typos
authorJoe Poirier <jdpoirier@gmail.com>
Tue, 1 Jun 2010 14:21:34 +0000 (16:21 +0200)
committerAndrew Gerrand <adg@golang.org>
Tue, 1 Jun 2010 14:21:34 +0000 (16:21 +0200)
R=golang-dev, adg
CC=golang-dev, rsc
https://golang.org/cl/1426042

doc/codelab/wiki/index.html
doc/codelab/wiki/wiki.html

index bfd9a8e49a492dfad27a7a5ef32e759c984fd706..107e49f2613395ba1a0cca8740b944208e93c68c 100644 (file)
@@ -848,9 +848,9 @@ a title string:
 </p>
 
 <pre>
-func viewHandler(c, *http.Conn, r *http.Request, title string)
-func editHandler(c, *http.Conn, r *http.Request, title string)
-func saveHandler(c, *http.Conn, r *http.Request, title string)
+func viewHandler(c *http.Conn, r *http.Request, title string)
+func editHandler(c *http.Conn, r *http.Request, title string)
+func saveHandler(c *http.Conn, r *http.Request, title string)
 </pre>
 
 <p>
index 7661f466d39cd5ac5db3f221e96134e8ec065449..c7f44ded4edfad6b89f3217c15bc0066f88e1c75 100644 (file)
@@ -670,9 +670,9 @@ a title string:
 </p>
 
 <pre>
-func viewHandler(c, *http.Conn, r *http.Request, title string)
-func editHandler(c, *http.Conn, r *http.Request, title string)
-func saveHandler(c, *http.Conn, r *http.Request, title string)
+func viewHandler(c *http.Conn, r *http.Request, title string)
+func editHandler(c *http.Conn, r *http.Request, title string)
+func saveHandler(c *http.Conn, r *http.Request, title string)
 </pre>
 
 <p>