From 1e708337b21c43c14d3ac46dd29181a4af0548da Mon Sep 17 00:00:00 2001 From: Osamu TONOMORI Date: Thu, 20 Dec 2018 22:39:01 +0900 Subject: [PATCH] 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 --- src/compress/flate/inflate.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.50.0