edit simple typos

R=golang-dev, adg
CC=golang-dev, rsc
https://golang.org/cl/1426042
This commit is contained in:
Joe Poirier 2010-06-01 16:21:34 +02:00 committed by Andrew Gerrand
parent c3080418d6
commit 2fa388e063
2 changed files with 6 additions and 6 deletions

View file

@ -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>

View file

@ -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>