From 10d50b885f2b2e65ed8304de1626a3caa361a8f1 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Fri, 29 Jul 2022 01:02:36 +0900 Subject: [PATCH] ebiten: fix typo Closes #2217 --- run.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.go b/run.go index 1f2e73c46..e2a6cb638 100644 --- a/run.go +++ b/run.go @@ -36,7 +36,7 @@ type Game interface { // This API is for just measurement and/or debugging. In the long run, the number of Update calls should be // adjusted based on the set TPS on average. // - // An actual time detal between two Updates might be bigger than expected. In this case, your game's + // An actual time delta between two Updates might be bigger than expected. In this case, your game's // Update or Draw takes longer than they should. In this case, there is nothing other than optimizing // your game implementation. //