소스 검색

Remove extra paren in Scripting Continued

Russell Waldrop 8 년 전
부모
커밋
411e490320
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      learning/step_by_step/scripting_continued.rst

+ 1 - 1
learning/step_by_step/scripting_continued.rst

@@ -48,7 +48,7 @@ with the following script:
 
 
     func _process(delta):
     func _process(delta):
         accum += delta
         accum += delta
-        text = (str(accum) # text is a built-in label property
+        text = str(accum) # text is a built-in label property
 
 
 Which will show a counter increasing each frame.
 Which will show a counter increasing each frame.