From: Robert Griesemer Date: Fri, 3 Apr 2009 06:26:55 +0000 (-0700) Subject: change in negation X-Git-Tag: weekly.2009-11-06~1893 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=461fb39367b86414d59218676148a8d50f66c188;p=gostls13.git change in negation R=rsc DELTA=1 (0 added, 0 deleted, 1 changed) OCL=27061 CL=27061 --- diff --git a/src/lib/http/url.go b/src/lib/http/url.go index 0b2e9783ad..13ac7772e6 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.