diff options
Diffstat (limited to 'doc/codelab/wiki')
-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> |