doc/docs.html | 1 +
src/pkg/image/draw/draw.go | 8 ++++----
diff --git a/doc/docs.html b/doc/docs.html
index a6deba086b65b7e94a74c0b410c6c8afaa0733cb..288cfd0bd0da3facf16f4606cb77acc13f807272 100644
--- a/doc/docs.html
+++ b/doc/docs.html
@@ -98,6 +98,7 @@
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.
+The Go image/draw package - the fundamentals of the image/draw package.
Tools
diff --git a/src/pkg/image/draw/draw.go b/src/pkg/image/draw/draw.go
index a748ff8c77ae59a5ecff3cbbc9d81f2ee43c6ca6..5171e03b188eff626392ed246dcf5ecd1f5bfb19 100644
--- a/src/pkg/image/draw/draw.go
+++ b/src/pkg/image/draw/draw.go
@@ -2,10 +2,10 @@ // Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
-// Package draw provides image composition functions
-// in the style of the Plan 9 graphics library
-// (see http://plan9.bell-labs.com/magic/man2html/2/draw)
-// and the X Render extension.
+// Package draw provides image composition functions.
+//
+// See "The Go image/draw package" for an introduction to this package:
+// http://blog.golang.org/2011/09/go-imagedraw-package.html
package draw
import (