Skip to content

Commit 3b7c6b0

Browse files
authored
Merge pull request #12152 from edward6d/patch-1
Removed unnecessary semicolon
2 parents 311efc7 + 70b3a2b commit 3b7c6b0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tutorials/scripting/gdscript/gdscript_basics.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1491,7 +1491,7 @@ callable. This can be used to pass functions as arguments.
14911491
return result
14921492

14931493
func add1(value: int) -> int:
1494-
return value + 1;
1494+
return value + 1
14951495

14961496
func _ready() -> void:
14971497
var my_array = [1, 2, 3]

0 commit comments

Comments
 (0)