Browse Source

Merge pull request #91 from her001/kinematic_2d

Fix mistyped word in "Kinematic character (2D)"
Rémi Verschelde 9 years ago
parent
commit
f4f0b5c917
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tutorials/2d/kinematic_character_2d.rst

+ 1 - 1
tutorials/2d/kinematic_character_2d.rst

@@ -51,7 +51,7 @@ To manage the logic of a kinematic body or character, it is always
 advised to use fixed process, which is called the same amount of times
 per second, always. This makes physics and motion calculation work in a
 more predictable way than using regular process, which might have spikes
-or lose precision is the frame rate is too high or too low.
+or lose precision if the frame rate is too high or too low.
 
 ::