소스 검색

Grammar fix

Changed "really bad" to "really badly". Should use adverb instead of adjective.
Joe Sweeney 8 년 전
부모
커밋
45ee501a20
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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!