diff --git a/doc/articles/image_draw.html b/doc/articles/image_draw.html index b1adbc53ab..ba735ad2b4 100644 --- a/doc/articles/image_draw.html +++ b/doc/articles/image_draw.html @@ -4,7 +4,7 @@ }-->
-Package image/draw defines +Package image/draw defines only one operation: drawing a source image onto a destination image, through an optional mask image. This one operation is surprisingly versatile and can perform a number of common image @@ -64,10 +64,10 @@ respective co-ordinate space.
-The DrawMask
+The DrawMask
function takes seven arguments, but an explicit mask and mask-point
are usually unnecessary, so the
-Draw function takes five:
+Draw function takes five:
@@ -79,7 +79,7 @@ func DrawMask(dst Image, r image.Rectangle, src image.Image, sp image.Point,The destination image must be mutable, so the image/draw package -defines a
draw.Image+defines adraw.Imageinterface which has aSetmethod.