From: Osamu TONOMORI Date: Thu, 20 Dec 2018 13:39:01 +0000 (+0900) Subject: compress/flate: fix the old url for the flate algorithm X-Git-Tag: go1.12beta2~101 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=1e708337b21c43c14d3ac46dd29181a4af0548da;p=gostls13.git compress/flate: fix the old url for the flate algorithm Change-Id: I84b74bc96516033bbf4a01f9aa81fe60d5a41355 Reviewed-on: https://go-review.googlesource.com/c/155317 Reviewed-by: Matthew Dempsky Reviewed-by: Brad Fitzpatrick --- diff --git a/src/compress/flate/inflate.go b/src/compress/flate/inflate.go index 685be70a3e..49921398e2 100644 --- a/src/compress/flate/inflate.go +++ b/src/compress/flate/inflate.go @@ -89,7 +89,7 @@ type Resetter interface { // number of bits. // // See the following: -// http://www.gzip.org/algorithm.txt +// https://github.com/madler/zlib/raw/master/doc/algorithm.txt // chunk & 15 is number of bits // chunk >> 4 is value, including table link