diff options
Diffstat (limited to 'doc/codelab/wiki/index.html')
-rw-r--r-- | doc/codelab/wiki/index.html | 6 |
1 files changed, 3 insertions, 3 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> |