diff --git a/src/net/http/client.go b/src/net/http/client.go index a71d70818ab1b2c07fa9b927a9bb6bb4d5d89417..a6f67f0ef4106b5bcb0abc716689e9b4e7f0db5b 100644 --- a/src/net/http/client.go +++ b/src/net/http/client.go @@ -718,7 +718,7 @@ func defaultCheckRedirect(req *Request, via []*Request) error { // // See the Client.Do method documentation for details on how redirects // are handled. -func Post(url string, contentType string, body io.Reader) (resp *Response, err error) { +func Post(url, contentType string, body io.Reader) (resp *Response, err error) { return DefaultClient.Post(url, contentType, body) } @@ -733,7 +733,7 @@ func Post(url string, contentType string, body io.Reader) (resp *Response, err e // // See the Client.Do method documentation for details on how redirects // are handled. -func (c *Client) Post(url string, contentType string, body io.Reader) (resp *Response, err error) { +func (c *Client) Post(url, contentType string, body io.Reader) (resp *Response, err error) { req, err := NewRequest("POST", url, body) if err != nil { return nil, err