From f7b215758555188ccbe6779a29c8028be2998d23 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Fri, 26 Dec 2014 03:47:24 +0900 Subject: [PATCH] Fix a comment --- image.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/image.go b/image.go index b96559257..d776cdfe1 100644 --- a/image.go +++ b/image.go @@ -165,7 +165,7 @@ func (i *Image) DrawImage(image *Image, options *DrawImageOptions) (err error) { // DrawImageAt draws the given image on the receiver image at the position (x, y). // -// If a geometry matrix is specified, the geometry matrix is applied ahead of the image is translated by (x, y). +// If a geometry matrix is specified, the geometry matrix is applied ahead of translating the image by (x, y). func (i *Image) DrawImageAt(image *Image, x, y int, options *DrawImageOptions) (err error) { if options == nil { options = &DrawImageOptions{}