Compare commits

..

3 Commits

Author SHA1 Message Date
Anten Skrabec 069cc4e011
Merge pull request #308 from miluChen/patch-2
fix typo in interface.go
2022-06-27 03:22:05 -06:00
miluChen 2c3a9a03bd
fix typo 2022-06-26 16:42:25 -04:00
miluChen cb394bc26f
fix typo in interface.go 2022-06-26 10:45:46 -04:00
1 changed files with 1 additions and 1 deletions

View File

@ -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 witih 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
}