From 2d612957edac8ecb5e00adf5e442cabc87c3b2ff Mon Sep 17 00:00:00 2001 From: nfnt Date: Fri, 3 Aug 2012 18:22:12 +0200 Subject: [PATCH] fixed typo --- resize.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resize.go b/resize.go index 99aa21b..04c95d8 100644 --- a/resize.go +++ b/resize.go @@ -81,7 +81,7 @@ type InterpolationFunction func(float32, float32, image.Image) color.RGBA64 // A new image with the given dimensions will be returned. // If one of the parameters w or h is set to -1, its size will be calculated so that // the aspect ratio is that of the originating image. -// The resizing algorithm uses slices for parallel computation. +// The resizing algorithm uses channels for parallel computation. func Resize(w int, h int, img image.Image, interp InterpolationFunction) image.Image { b_old := img.Bounds() w_old := float32(b_old.Dx())