Skip to content

Commit

Permalink
net/http: fix doc comment on FormValue function
Browse files Browse the repository at this point in the history
This function checks Request.Form, which now includes values parsed from a PATCH request.

Fixes #60585

Change-Id: Icb095d9ac2f8b0c5dbf313e507ed838cb941517f
GitHub-Last-Rev: 3a477ea
GitHub-Pull-Request: #61591
Reviewed-on: https://go-review.googlesource.com/c/go/+/513435
Reviewed-by: David Chase <[email protected]>
Reviewed-by: Damien Neil <[email protected]>
Run-TryBot: Damien Neil <[email protected]>
TryBot-Result: Gopher Robot <[email protected]>
Auto-Submit: Damien Neil <[email protected]>
  • Loading branch information
eduardbme authored and gopherbot committed Jul 31, 2023
1 parent ee61186 commit a2905e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/net/http/request.go
Original file line number Diff line number Diff line change
Expand Up @@ -1339,7 +1339,7 @@ func (r *Request) ParseMultipartForm(maxMemory int64) error {
}

// FormValue returns the first value for the named component of the query.
// POST and PUT body parameters take precedence over URL query string values.
// POST, PUT, and PATCH body parameters take precedence over URL query string values.
// FormValue calls ParseMultipartForm and ParseForm if necessary and ignores
// any errors returned by these functions.
// If key is not present, FormValue returns the empty string.
Expand All @@ -1356,7 +1356,7 @@ func (r *Request) FormValue(key string) string {
}

// PostFormValue returns the first value for the named component of the POST,
// PATCH, or PUT request body. URL query parameters are ignored.
// PUT, or PATCH request body. URL query parameters are ignored.
// PostFormValue calls ParseMultipartForm and ParseForm if necessary and ignores
// any errors returned by these functions.
// If key is not present, PostFormValue returns the empty string.
Expand Down

0 comments on commit a2905e9

Please sign in to comment.