From f0c283fdf5bec2039b8eefaa62cb237a417f8dbf Mon Sep 17 00:00:00 2001
From: Joe Poirier
-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)
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:
-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)
-- cgit v1.2.3