From d2d19d07642c123dbd732c58d504810184c901a1 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Sun, 23 Jul 2017 05:46:32 +0900 Subject: [PATCH] doc: Fix comments --- image.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/image.go b/image.go index 7b4861ee0..1086e7813 100644 --- a/image.go +++ b/image.go @@ -25,8 +25,8 @@ import ( "github.com/hajimehoshi/ebiten/internal/restorable" ) -// Image represents an image. -// The pixel format is alpha-premultiplied. +// Image represents a rectangle set of pixels. +// The pixel format is alpha-premultiplied RGBA. // Image implements image.Image. // // Functions of Image never returns error as of 1.5.0-alpha, and error values are always nil.