From 1f3d1b8dcb728ffe96832406f66fedc314b1d419 Mon Sep 17 00:00:00 2001 From: Poommetee Ketson Date: Wed, 2 Aug 2017 01:03:18 +0700 Subject: [PATCH] Simple2DGame: fix typo 'pad' to 'ball' --- learning/step_by_step/simple_2d_game.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learning/step_by_step/simple_2d_game.rst b/learning/step_by_step/simple_2d_game.rst index 52cc7f0b9..18442461a 100644 --- a/learning/step_by_step/simple_2d_game.rst +++ b/learning/step_by_step/simple_2d_game.rst @@ -151,7 +151,7 @@ our ball move. var pad_size var direction = Vector2(1.0, 0.0) - # Constant for pad speed (in pixels/second) + # Constant for ball speed (in pixels/second) const INITIAL_BALL_SPEED = 80 # Speed of the ball (also in pixels/second) var ball_speed = INITIAL_BALL_SPEED