Skip to content
Snippets Groups Projects
Unverified Commit 59ee22a9 authored by Will McCutchen's avatar Will McCutchen Committed by GitHub
Browse files

Merge pull request #28 from hmble/patch-1

typo in docs link
parents 40ab5eb0 65753261
No related branches found
No related tags found
No related merge requests found
...@@ -120,7 +120,7 @@ func parseBody(w http.ResponseWriter, r *http.Request, resp *bodyResponse) error ...@@ -120,7 +120,7 @@ func parseBody(w http.ResponseWriter, r *http.Request, resp *bodyResponse) error
case strings.HasPrefix(ct, "multipart/form-data"): case strings.HasPrefix(ct, "multipart/form-data"):
// The memory limit here only restricts how many parts will be kept in // The memory limit here only restricts how many parts will be kept in
// memory before overflowing to disk: // memory before overflowing to disk:
// http://localhost:8080/pkg/net/http/#Request.ParseMultipartForm // https://golang.org/pkg/net/http/#Request.ParseMultipartForm
if err := r.ParseMultipartForm(1024); err != nil { if err := r.ParseMultipartForm(1024); err != nil {
return err return err
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment