Skip to content
Snippets Groups Projects
Unverified Commit 65753261 authored by Samyak Bakliwal's avatar Samyak Bakliwal Committed by GitHub
Browse files

typo in docs link

Given link was pointing to localhost:8080 instead of official golang.org
parent 40ab5eb0
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
case strings.HasPrefix(ct, "multipart/form-data"):
// The memory limit here only restricts how many parts will be kept in
// 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 {
return err
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment