diff options
author | Robert Griesemer <gri@golang.org> | 2009-04-02 23:26:55 -0700 |
---|---|---|
committer | Robert Griesemer <gri@golang.org> | 2009-04-02 23:26:55 -0700 |
commit | 816a7afb93d2103e71cbfc5255acf17ec7b4a4ce (patch) | |
tree | 772dab44656cbad58d8a7f8e8ae71bcadc56ac2a | |
parent | 349f562322f96c5b0bde42ccb916dd14df71e962 (diff) | |
download | golang-816a7afb93d2103e71cbfc5255acf17ec7b4a4ce.tar.gz |
change in negation
R=rsc
DELTA=1 (0 added, 0 deleted, 1 changed)
OCL=27061
CL=27061
-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. |