Commit 3484d546 authored by Brad Fitzpatrick's avatar Brad Fitzpatrick

net/http: remove an errant space

Made the godoc overview section oddly indented
compared to the other code blocks.

R=golang-dev, mikioh.mikioh, dsymonds, r
CC=golang-dev
https://golang.org/cl/5645060
parent e7bd71c8
...@@ -12,7 +12,7 @@ Get, Head, Post, and PostForm make HTTP requests: ...@@ -12,7 +12,7 @@ Get, Head, Post, and PostForm make HTTP requests:
resp, err := http.Post("http://example.com/upload", "image/jpeg", &buf) resp, err := http.Post("http://example.com/upload", "image/jpeg", &buf)
... ...
resp, err := http.PostForm("http://example.com/form", resp, err := http.PostForm("http://example.com/form",
url.Values{"key": {"Value"}, "id": {"123"}}) url.Values{"key": {"Value"}, "id": {"123"}})
The client must close the response body when finished with it: The client must close the response body when finished with it:
......
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