From 690dd823bfbf19de47ef925ace740b2ff2a90cf4 Mon Sep 17 00:00:00 2001 From: copycode69 Date: Mon, 9 Dec 2024 18:32:29 +0530 Subject: [PATCH] updated word elapse. It should be elapsed to correctly describe the time that has passed --- projects/build-pong-with-pygame/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/build-pong-with-pygame/main.py b/projects/build-pong-with-pygame/main.py index 3f33917f..4e672336 100644 --- a/projects/build-pong-with-pygame/main.py +++ b/projects/build-pong-with-pygame/main.py @@ -90,7 +90,7 @@ def main(): continue ''' - get the time elapse between now and the last frame + get the time elapsed between now and the last frame 60 is an arbitrary number but the game runs smooth at 60 FPS ''' delta_time = clock.tick(60)