ebiten: Update comments

This commit is contained in:
Hajime Hoshi 2021-04-03 18:05:36 +09:00
parent 8d951ea024
commit d6ee55cb22

2
run.go
View File

@ -175,7 +175,7 @@ func RunGame(game Game) error {
return nil
}
// RunGameWithoutMainLoop runs the game, but don't call the loop on the main (UI) thread.
// RunGameWithoutMainLoop runs the game, but doesn't call the loop on the main (UI) thread.
// Different from Run, RunGameWithoutMainLoop returns immediately.
//
// Ebiten users should NOT call RunGameWithoutMainLoop.