summaryrefslogtreecommitdiff
path: root/src/pkg/image/names.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/image/names.go')
-rw-r--r--src/pkg/image/names.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/image/names.go b/src/pkg/image/names.go
index 04ee2cfb4..8985f4921 100644
--- a/src/pkg/image/names.go
+++ b/src/pkg/image/names.go
@@ -41,7 +41,7 @@ func (c *Uniform) Bounds() Rectangle { return Rectangle{Point{-1e9, -1e9}, Point
func (c *Uniform) At(x, y int) color.Color { return c.C }
-// Opaque scans the entire image and returns whether or not it is fully opaque.
+// Opaque scans the entire image and reports whether it is fully opaque.
func (c *Uniform) Opaque() bool {
_, _, _, a := c.C.RGBA()
return a == 0xffff