diff options
author | Joe Poirier <jdpoirier@gmail.com> | 2010-06-01 16:21:34 +0200 |
---|---|---|
committer | Joe Poirier <jdpoirier@gmail.com> | 2010-06-01 16:21:34 +0200 |
commit | f0c283fdf5bec2039b8eefaa62cb237a417f8dbf (patch) | |
tree | 7838128a4afe546b73e475ccbdd8f6a55045fa1c /doc | |
parent | d6000311c8136ff9e28b8f03c5d969b5a3864c63 (diff) | |
download | golang-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.html | 6 | ||||
-rw-r--r-- | doc/codelab/wiki/wiki.html | 6 |
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> |