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 7661f466d3..c7f44ded4e 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)