From 2c3a9a03bdf40785aef00d89e0f0f5bd6aff17f5 Mon Sep 17 00:00:00 2001 From: miluChen Date: Sun, 26 Jun 2022 16:42:25 -0400 Subject: [PATCH] fix typo --- interface.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface.go b/interface.go index b851dad..47272b9 100644 --- a/interface.go +++ b/interface.go @@ -114,7 +114,7 @@ type TrianglesClipped interface { // Picture represents a rectangular area of raster data, such as a color. It has Bounds which // specify the rectangle where data is located. type Picture interface { - // Bounds returns the rectangle of the Picture. All data is located witin this rectangle. + // Bounds returns the rectangle of the Picture. All data is located within this rectangle. // Querying properties outside the rectangle should return default value of that property. Bounds() Rect }