diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/http/url.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/http/url.go b/src/lib/http/url.go index 0b2e9783a..13ac7772e 100644 --- a/src/lib/http/url.go +++ b/src/lib/http/url.go @@ -43,7 +43,7 @@ func unhex(c byte) byte { // URLUnescape unescapes a URL-encoded string, // converting %AB into the byte 0xAB. -// It returns a BadURL error if each % is not followed +// It returns a BadURL error if any % is not followed // by two hexadecimal digits. func URLUnescape(s string) (string, *os.Error) { // Count %, check that they're well-formed. |