From b69dec3f1e84e8e11200d3180c55ac73c7922f24 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Fri, 26 Dec 2014 03:24:57 +0900 Subject: [PATCH] Bug fix: comment --- image.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/image.go b/image.go index a06773127..ba7e3b11c 100644 --- a/image.go +++ b/image.go @@ -155,8 +155,8 @@ func (i *Image) Fill(clr color.Color) (err error) { } // DrawImage draws the given image on the receiver image. -// This method accepts the parts srcs of the given image at the parts of the destination dsts. -// After determining parts to draw, this applies the geometry matrix geo and the color matrix color. +// This method accepts the parts of the given image at the parts of the destination as the option. +// After determining parts to draw, this applies the geometry matrix and the color matrix as the option. // // If you want to draw a whole image simply, use DrawWholeImage. func (i *Image) DrawImage(image *Image, option *DrawImageOptions) (err error) {