ebiten: Correct spelling of game in function comment (#1203)

This commit is contained in:
Marios Nikolaou 2020-06-19 14:12:02 +02:00 committed by GitHub
parent 3da0af5de2
commit ee8d0c3479
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
run.go
View File

@ -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.
//