浏览代码

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):
         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.