Commit 2fa388e0 authored by Joe Poirier's avatar Joe Poirier Committed by Andrew Gerrand

edit simple typos

R=golang-dev, adg
CC=golang-dev, rsc
https://golang.org/cl/1426042
parent c3080418
......@@ -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>
......
......@@ -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>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment