docs: Fix a wrong function name

This commit is contained in:
Hajime Hoshi 2020-04-01 04:18:48 +09:00
parent a4f6909710
commit 3d03599882

2
doc.go
View File

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