summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJoe Poirier <jdpoirier@gmail.com>2010-06-01 16:21:34 +0200
committerJoe Poirier <jdpoirier@gmail.com>2010-06-01 16:21:34 +0200
commitf0c283fdf5bec2039b8eefaa62cb237a417f8dbf (patch)
tree7838128a4afe546b73e475ccbdd8f6a55045fa1c /doc
parentd6000311c8136ff9e28b8f03c5d969b5a3864c63 (diff)
downloadgolang-f0c283fdf5bec2039b8eefaa62cb237a417f8dbf.tar.gz
edit simple typos
R=golang-dev, adg CC=golang-dev, rsc http://codereview.appspot.com/1426042 Committer: Andrew Gerrand <adg@golang.org>
Diffstat (limited to 'doc')
-rw-r--r--doc/codelab/wiki/index.html6
-rw-r--r--doc/codelab/wiki/wiki.html6
2 files changed, 6 insertions, 6 deletions
diff --git a/doc/codelab/wiki/index.html b/doc/codelab/wiki/index.html
index bfd9a8e49..107e49f26 100644
--- a/doc/codelab/wiki/index.html
+++ b/doc/codelab/wiki/index.html
@@ -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>
diff --git a/doc/codelab/wiki/wiki.html b/doc/codelab/wiki/wiki.html
index 7661f466d..c7f44ded4 100644
--- a/doc/codelab/wiki/wiki.html
+++ b/doc/codelab/wiki/wiki.html
@@ -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>