Browse Source

Remove extra paren in Scripting Continued

Russell Waldrop 7 years ago
parent
commit
411e490320
1 changed files with 1 additions and 1 deletions
  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.