From 2c0108e1787f716b42814dd0c96f6270bc838c2c Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Tue, 9 Mar 2021 03:23:53 +0900 Subject: [PATCH] examples/tiles: Misspelling --- examples/tiles/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/tiles/main.go b/examples/tiles/main.go index 73f593444..4644884ff 100644 --- a/examples/tiles/main.go +++ b/examples/tiles/main.go @@ -70,7 +70,7 @@ func (g *Game) Update() error { func (g *Game) Draw(screen *ebiten.Image) { // Draw each tile with each DrawImage call. // As the source images of all DrawImage calls are always same, - // this rendering is done very effectively. + // this rendering is done very efficiently. // For more detail, see https://pkg.go.dev/github.com/hajimehoshi/ebiten/v2#Image.DrawImage const xNum = screenWidth / tileSize for _, l := range g.layers {