mirror of
https://github.com/golang/go
synced 2024-11-11 20:20:23 -07:00
edit simple typos
R=golang-dev, adg CC=golang-dev, rsc https://golang.org/cl/1426042
This commit is contained in:
parent
c3080418d6
commit
2fa388e063
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user