docs: Draw function's signature was wrong (again)

This commit is contained in:
Hajime Hoshi 2020-04-01 04:25:32 +09:00
parent de786035c7
commit e89605fc4a

2
doc.go
View File

@ -28,7 +28,7 @@
// //
// // Draw draws the game screen. // // Draw draws the game screen.
// // Draw is called every frame (typically 1/60[s] for 60Hz display). // // Draw is called every frame (typically 1/60[s] for 60Hz display).
// func (g *Game) Draw(screen *ebiten.Image) error { // func (g *Game) Draw(screen *ebiten.Image) {
// // Write your game's rendering. // // Write your game's rendering.
// } // }
// //