소스 검색

Minor typography fix.

Mikael Säker 7 년 전
부모
커밋
475ad3d07c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      docs/en/tutorials/platformer.md

+ 1 - 1
docs/en/tutorials/platformer.md

@@ -103,7 +103,7 @@ This is how we integrate the acceleration and velocity to move the character in
     ```
 
 5. Check if dv exceeds the intended speed difference, clamp it in that case
-6. Save the current velocity for later use (+self.velocity+, which right now is the velocity used the previous frame):
+6. Save the current velocity for later use (`self.velocity`, which right now is the velocity used the previous frame):
 
     ```lua
     local v0 = self.velocity