From 246c2fb73613ad5a252f0610a0a14b5fc14bfdf0 Mon Sep 17 00:00:00 2001 From: Andrew Gerrand Date: Wed, 5 Oct 2011 13:18:41 -0700 Subject: [release-branch.r60] doc: link to image blog post MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ««« 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 --- doc/docs.html | 1 + src/pkg/image/image.go | 3 +++ 2 files changed, 4 insertions(+) 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. -- cgit v1.2.3-54-g00ecf