From: Nigel Tao Date: Tue, 10 Aug 2010 07:56:57 +0000 (+1000) Subject: image: fix comment typo. X-Git-Tag: weekly.2010-08-11~19 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=d4e23b7e37698b3913ec7f6df942d37b9c1e6f35;p=gostls13.git image: fix comment typo. R=adg CC=golang-dev https://golang.org/cl/1952041 --- diff --git a/src/pkg/image/image.go b/src/pkg/image/image.go index b7e62bfae4..b5a2f0bbcb 100644 --- a/src/pkg/image/image.go +++ b/src/pkg/image/image.go @@ -330,7 +330,7 @@ func NewAlpha16(w, h int) *Alpha16 { return &Alpha16{pix, w, Rectangle{ZP, Point{w, h}}} } -// An Gray is an in-memory image of GrayColor values. +// A Gray is an in-memory image of GrayColor values. type Gray struct { // Pix holds the image's pixels. The pixel at (x, y) is Pix[y*Stride+x]. Pix []GrayColor @@ -368,7 +368,7 @@ func NewGray(w, h int) *Gray { return &Gray{pix, w, Rectangle{ZP, Point{w, h}}} } -// An Gray16 is an in-memory image of Gray16Color values. +// A Gray16 is an in-memory image of Gray16Color values. type Gray16 struct { // Pix holds the image's pixels. The pixel at (x, y) is Pix[y*Stride+x]. Pix []Gray16Color