Browse Source

Small typo fix

Drambique 7 years ago
parent
commit
f2afb18dbd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tutorials/3d/fps_tutorial/part_one.rst

+ 1 - 1
tutorials/3d/fps_tutorial/part_one.rst

@@ -494,7 +494,7 @@ to change our acceleration to the new acceleration:
 ::
 
     var target = dir
-    # NEW CPDE. Replaces "target *= MAX_SPEED"
+    # NEW CODE. Replaces "target *= MAX_SPEED"
     if is_sprinting:
         target *= MAX_SPRINT_SPEED
     else: