git.lucas.co / go_mono
git clone https://git.lucas.co/go_mono.git

commit93a98e78053eecfc047d8165cbf0457f7162a7cd
parent2c27a34d37
authorNigel Tao <[email protected]>
date2015-03-05 09:52
draw: fix a comment typo.

Change-Id: I6d34d091514915333e488cee9e2ddb5a9d78b6a5
Reviewed-on: https://go-review.googlesource.com/6801
Reviewed-by: David Symonds <[email protected]>

 draw/scale.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/draw/scale.go b/draw/scale.go
index 9f8cdd4..a603d80 100644
--- a/draw/scale.go
+++ b/draw/scale.go
@@ -23,7 +23,7 @@ type Scaler interface {
 }
 
 // Interpolator is an interpolation algorithm, when dst and src pixels don't
-// have a 1:1 correspondance.
+// have a 1:1 correspondence.
 //
 // Of the interpolators provided by this package:
 //	- NearestNeighbor is fast but usually looks worst.