aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Gerrand <adg@golang.org>2011-10-05 13:18:41 -0700
committerAndrew Gerrand <adg@golang.org>2011-10-05 13:18:41 -0700
commit246c2fb73613ad5a252f0610a0a14b5fc14bfdf0 (patch)
treef5cda64d9bb84508345c3da2808f11a6a904060e
parentaf68419ab264f48275563674729109d551185355 (diff)
downloadgo-246c2fb73613ad5a252f0610a0a14b5fc14bfdf0.tar.gz
go-246c2fb73613ad5a252f0610a0a14b5fc14bfdf0.zip
[release-branch.r60] doc: link to image blog post
««« CL 5086048 / 09032e16d47c doc: link to image blog post R=golang-dev, r CC=golang-dev https://golang.org/cl/5086048 »»» R=dsymonds CC=golang-dev https://golang.org/cl/5201041
-rw-r--r--doc/docs.html1
-rw-r--r--src/pkg/image/image.go3
2 files changed, 4 insertions, 0 deletions
diff --git a/doc/docs.html b/doc/docs.html
index ce833fdd1a..a6deba086b 100644
--- a/doc/docs.html
+++ b/doc/docs.html
@@ -97,6 +97,7 @@ Notable articles from the <a href="http://blog.golang.org/">Go Blog</a>.
<li><a href="http://blog.golang.org/2011/01/json-and-go.html">JSON and Go</a> - using the <a href="/pkg/json/">json</a> package.</li>
<li><a href="http://blog.golang.org/2011/03/gobs-of-data.html">Gobs of data</a> - the design and use of the <a href="/pkg/gob/">gob</a> package.</li>
<li><a href="http://blog.golang.org/2011/09/laws-of-reflection.html">The Laws of Reflection</a> - the fundamentals of the <a href="/pkg/reflect/">reflect</a> package.</li>
+<li><a href="http://blog.golang.org/2011/09/go-image-package.html">The Go image package</a> - the fundamentals of the <a href="/pkg/image/">image</a> package.</li>
</ul>
<h3>Tools</h3>
diff --git a/src/pkg/image/image.go b/src/pkg/image/image.go
index 11def94354..7c7a4b7a77 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.