From 45ee501a209f90d676f0425557defbbb679575fd Mon Sep 17 00:00:00 2001 From: Joe Sweeney Date: Tue, 15 Aug 2017 16:55:52 -0600 Subject: [PATCH] Grammar fix Changed "really bad" to "really badly". Should use adverb instead of adjective. --- learning/features/physics/physics_introduction.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learning/features/physics/physics_introduction.rst b/learning/features/physics/physics_introduction.rst index 1ba4dae67..8126ae850 100644 --- a/learning/features/physics/physics_introduction.rst +++ b/learning/features/physics/physics_introduction.rst @@ -94,7 +94,7 @@ against everything in two for loops like this: if (i.collides(j)): do_collision_code() -But this scales really bad. Let's imagine there are only 100 objects in +But this scales really badly. Let's imagine there are only 100 objects in the game. This means that 100\*100=10000 collisions will need to be tested each frame. This is a lot!