From 65753261f0d6d44f31437967b92c7febd3104c8e Mon Sep 17 00:00:00 2001 From: Samyak Bakliwal <w3bcode@gmail.com> Date: Wed, 12 Feb 2020 12:22:00 +0530 Subject: [PATCH] typo in docs link Given link was pointing to localhost:8080 instead of official golang.org --- httpbin/helpers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httpbin/helpers.go b/httpbin/helpers.go index 4c4c66c..fe62be3 100644 --- a/httpbin/helpers.go +++ b/httpbin/helpers.go @@ -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 } -- GitLab