diff --git a/ebitenutil/shapes.go b/ebitenutil/shapes.go index f78669f26..5dfe28f06 100644 --- a/ebitenutil/shapes.go +++ b/ebitenutil/shapes.go @@ -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()