From 0c19b8d7ae6a3eef732ff351aecdbce1cb1e062d Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Sat, 24 Sep 2022 13:53:10 +0900 Subject: [PATCH] ebitenutil: typo --- ebitenutil/shapes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()