Quellcode durchsuchen

Merge pull request #442 from jcs224/patch-1

Grammar fix
Julian Murgia vor 8 Jahren
Ursprung
Commit
a376bdae05
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      learning/features/physics/physics_introduction.rst

+ 1 - 1
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!