diff --git a/doc/docs.html b/doc/docs.html
index b6e8028e4d..ed03a24ede 100644
--- a/doc/docs.html
+++ b/doc/docs.html
@@ -97,6 +97,7 @@ Notable articles from the Go Blog.
JSON and Go - using the json package.
Gobs of data - the design and use of the gob package.
The Laws of Reflection - the fundamentals of the reflect package.
+The Go image package - the fundamentals of the image package.
Tools
diff --git a/src/pkg/image/image.go b/src/pkg/image/image.go
index 1ff0c023a4..72dfb62431 100644
--- a/src/pkg/image/image.go
+++ b/src/pkg/image/image.go
@@ -3,6 +3,9 @@
// license that can be found in the LICENSE file.
// Package image implements a basic 2-D image library.
+//
+// See "The Go image package" for an introduction to this package:
+// http://blog.golang.org/2011/09/go-image-package.html
package image
// Config holds an image's color model and dimensions.