]> Cypherpunks repositories - gostls13.git/commitdiff
change in negation
authorRobert Griesemer <gri@golang.org>
Fri, 3 Apr 2009 06:26:55 +0000 (23:26 -0700)
committerRobert Griesemer <gri@golang.org>
Fri, 3 Apr 2009 06:26:55 +0000 (23:26 -0700)
R=rsc
DELTA=1  (0 added, 0 deleted, 1 changed)
OCL=27061
CL=27061

src/lib/http/url.go

index 0b2e9783ad388598465b486f94dea63de6bb3de0..13ac7772e6cf50234f17e3857bd98912680e9e79 100644 (file)
@@ -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.