From b3f8a8f165d15cfffd4948151eae34f95330748c Mon Sep 17 00:00:00 2001 From: Caleb Martinez Date: Fri, 29 Jun 2018 15:50:08 -0400 Subject: [PATCH] Update url.go --- src/net/url/url.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/net/url/url.go b/src/net/url/url.go index 7bcfac44aa..6608dbd74a 100644 --- a/src/net/url/url.go +++ b/src/net/url/url.go @@ -164,7 +164,7 @@ func shouldEscape(c byte, mode encoding) bool { // QueryUnescape does the inverse transformation of QueryEscape, // 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 // digits. func QueryUnescape(s string) (string, error) {