summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Griesemer <gri@golang.org>2009-04-02 23:26:55 -0700
committerRobert Griesemer <gri@golang.org>2009-04-02 23:26:55 -0700
commit816a7afb93d2103e71cbfc5255acf17ec7b4a4ce (patch)
tree772dab44656cbad58d8a7f8e8ae71bcadc56ac2a
parent349f562322f96c5b0bde42ccb916dd14df71e962 (diff)
downloadgolang-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.go2
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.