Explorar o código

Remove extra paren in Scripting Continued

Russell Waldrop %!s(int64=8) %!d(string=hai) anos
pai
achega
411e490320
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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.