From 76d82dbc4cde51cde2cfcb002af2ec874a8a5c88 Mon Sep 17 00:00:00 2001 From: Andrew Gerrand Date: Fri, 23 Sep 2011 07:22:28 +1000 Subject: [PATCH] doc: link to image blog post R=golang-dev, r CC=golang-dev https://golang.org/cl/5086048 --- 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 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. -- 2.48.1