From 585294db73b35f5c2992f433739b1e2ac0c8f231 Mon Sep 17 00:00:00 2001 From: Nigel Tao Date: Fri, 30 Sep 2011 13:11:20 +1000 Subject: [PATCH] doc: link to image/draw blog post. R=adg TBR=adg CC=golang-dev https://golang.org/cl/5154046 --- doc/docs.html | 1 + src/pkg/image/draw/draw.go | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/doc/docs.html b/doc/docs.html index ed03a24ede..e25a538149 100644 --- a/doc/docs.html +++ b/doc/docs.html @@ -98,6 +98,7 @@ Notable articles from the Go Blog.
  • 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 a748ff8c77..5171e03b18 100644 --- a/src/pkg/image/draw/draw.go +++ b/src/pkg/image/draw/draw.go @@ -2,10 +2,10 @@ // 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 (