Fix comment

This commit is contained in:
Hajime Hoshi 2015-01-05 10:08:54 +09:00
parent f697501531
commit 2be0aa7f0c

View File

@ -216,7 +216,7 @@ func (i *Image) At(x, y int) color.Color {
return color.RGBA{r, g, b, a}
}
// Deprecated: Use ImageParts instead.
// Deprecated (as of 1.1.0-alpha): Use ImageParts instead.
type ImagePart struct {
Dst image.Rectangle
Src image.Rectangle
@ -235,6 +235,6 @@ type DrawImageOptions struct {
GeoM GeoM
ColorM ColorM
// Deprecated: Use ImageParts instead.
// Deprecated (as of 1.1.0-alpha): Use ImageParts instead.
Parts []ImagePart
}