From: Andrew Gerrand Date: Wed, 5 Oct 2011 20:18:41 +0000 (-0700) Subject: [release-branch.r60] doc: link to image blog post X-Git-Tag: release.r60.2~5 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=246c2fb73613ad5a252f0610a0a14b5fc14bfdf0;p=gostls13.git [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 --- 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 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 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.