summaryrefslogtreecommitdiff
path: root/src/compress
diff options
context:
space:
mode:
authorAndrew Gerrand <adg@golang.org>2014-11-10 09:15:57 +1100
committerAndrew Gerrand <adg@golang.org>2014-11-10 09:15:57 +1100
commit395a8eb5f4e4e10220a8a728a2124cf1521f70d3 (patch)
tree0403ff97a90c22c99f946ba4f3cf1672f8496947 /src/compress
parent00f9c7b0d78e148c2010d0487c8bdb761bd8b147 (diff)
downloadgo-395a8eb5f4e4e10220a8a728a2124cf1521f70d3.tar.gz
all: use golang.org/x/... import paths
LGTM=rsc, r R=r, rsc CC=golang-codereview, golang-codereviews https://codereview.appspot.com/168050043
Diffstat (limited to 'src/compress')
-rw-r--r--src/compress/lzw/reader.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compress/lzw/reader.go b/src/compress/lzw/reader.go
index 0835bd8b9..526620c82 100644
--- a/src/compress/lzw/reader.go
+++ b/src/compress/lzw/reader.go
@@ -11,7 +11,7 @@
// two non-literal codes are a clear code and an EOF code.
//
// The TIFF file format uses a similar but incompatible version of the LZW
-// algorithm. See the code.google.com/p/go.image/tiff/lzw package for an
+// algorithm. See the golang.org/x/image/tiff/lzw package for an
// implementation.
package lzw