ebitenutil: typo

This commit is contained in:
Hajime Hoshi 2022-09-24 13:53:10 +09:00
parent ac651def3b
commit 0c19b8d7ae

View File

@ -63,7 +63,7 @@ func DrawRect(dst *ebiten.Image, x, y, width, height float64, clr color.Color) {
// DrawCircle draws a circle on given destination dst.
//
// DrawCircle is intended to be used mainly for debugging or prototyping puropose.
// DrawCircle is intended to be used mainly for debugging or prototyping purpose.
func DrawCircle(dst *ebiten.Image, cx, cy, r float64, clr color.Color) {
var path vector.Path
rd, g, b, a := clr.RGBA()