]> Cypherpunks repositories - gostls13.git/commitdiff
[release-branch.r60] doc: link to image blog post
authorAndrew Gerrand <adg@golang.org>
Wed, 5 Oct 2011 20:18:41 +0000 (13:18 -0700)
committerAndrew Gerrand <adg@golang.org>
Wed, 5 Oct 2011 20:18:41 +0000 (13:18 -0700)
««« 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
src/pkg/image/image.go

index ce833fdd1a09416e16f45ce4ae9612c9ce3f6d3a..a6deba086b65b7e94a74c0b410c6c8afaa0733cb 100644 (file)
@@ -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>
index 11def94354ad9570d435f7793388b8454332d9a9..7c7a4b7a778423bc66927359717ed64aa9ea3445 100644 (file)
@@ -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.