From 93173506f5b10e38943871574af51514ec989b8d Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Mon, 14 Aug 2017 00:45:10 +0900 Subject: [PATCH] ebitenutil: English --- ebitenutil/shapes.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ebitenutil/shapes.go b/ebitenutil/shapes.go index 4b60c6149..353b8e739 100644 --- a/ebitenutil/shapes.go +++ b/ebitenutil/shapes.go @@ -43,7 +43,7 @@ func colorScale(clr color.Color) (rf, gf, bf, af float64) { // DrawLine draws a line on the given destination dst. // -// DrawLine is intented to be used mainly for debugging or prototyping purpose. +// DrawLine is intended to be used mainly for debugging or prototyping purpose. func DrawLine(dst *ebiten.Image, x1, y1, x2, y2 float64, clr color.Color) { ew, eh := emptyImage.Size() length := math.Hypot(x2-x1, y2-y1) @@ -58,7 +58,7 @@ func DrawLine(dst *ebiten.Image, x1, y1, x2, y2 float64, clr color.Color) { // DrawRect draws a rectangle on the given destination dst. // -// DrawRect is intented to be used mainly for debugging or prototyping purpose. +// DrawRect is intended to be used mainly for debugging or prototyping purpose. func DrawRect(dst *ebiten.Image, x, y, width, height float64, clr color.Color) { ew, eh := emptyImage.Size()