Commit 1b12a2ca authored by Caleb Martinez's avatar Caleb Martinez Committed by Brad Fitzpatrick

net/url: correct the documentation for PathUnescape

Fixes issue #26139

Change-Id: Id9a3e5c443ee175ad9add6296ed45bdf328b15a0
GitHub-Last-Rev: b3f8a8f165d15cfffd4948151eae34f95330748c
GitHub-Pull-Request: golang/go#26146
Reviewed-on: https://go-review.googlesource.com/121696Reviewed-by: default avatarBrad Fitzpatrick <bradfitz@golang.org>
parent 3198b90e
...@@ -164,7 +164,7 @@ func shouldEscape(c byte, mode encoding) bool { ...@@ -164,7 +164,7 @@ func shouldEscape(c byte, mode encoding) bool {
// QueryUnescape does the inverse transformation of QueryEscape, // QueryUnescape does the inverse transformation of QueryEscape,
// converting each 3-byte encoded substring of the form "%AB" into the // converting each 3-byte encoded substring of the form "%AB" into the
// hex-decoded byte 0xAB. It also converts '+' into ' ' (space). // hex-decoded byte 0xAB.
// It returns an error if any % is not followed by two hexadecimal // It returns an error if any % is not followed by two hexadecimal
// digits. // digits.
func QueryUnescape(s string) (string, error) { func QueryUnescape(s string) (string, error) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment