From ee8d0c3479fe23d1c228fa50c063128a8b9fccc3 Mon Sep 17 00:00:00 2001 From: Marios Nikolaou Date: Fri, 19 Jun 2020 14:12:02 +0200 Subject: [PATCH] ebiten: Correct spelling of game in function comment (#1203) --- run.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.go b/run.go index 4815f3e41..982cad579 100644 --- a/run.go +++ b/run.go @@ -244,7 +244,7 @@ func (i *imageDumperGameWithDraw) Draw(screen *Image) { } // RunGame starts the main loop and runs the game. -// game's Update function is called every tick to update the gmae logic. +// game's Update function is called every tick to update the game logic. // game's Draw function is, if it exists, called every frame to draw the screen. // game's Layout function is called when necessary, and you can specify the logical screen size by the function. //