From 3d035998829dabc674b9dcf70e696bdc1c207e94 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Wed, 1 Apr 2020 04:18:48 +0900 Subject: [PATCH] docs: Fix a wrong function name --- doc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc.go b/doc.go index 7ea10512a..b90594790 100644 --- a/doc.go +++ b/doc.go @@ -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. // } //