summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/parser/features/lambda_callable.gd
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2023-01-11 01:10:10 +0100
committerGitHub <noreply@github.com>2023-01-11 01:10:10 +0100
commit5eb161a9c8eb210d461178a7ea5b6368956b45ca (patch)
tree76953a5eaf2bef8c24456fce1b541d691577f940 /modules/gdscript/tests/scripts/parser/features/lambda_callable.gd
parentc2f96a8b837de99c76db55a30f950c337b7637eb (diff)
parent44d1d72af19ff7874704fa88d7d08fe4f782c9db (diff)
Merge pull request #70595 from adamscott/add-gdscript-editorconfig
Add GDScript `.editorconfig` rules
Diffstat (limited to 'modules/gdscript/tests/scripts/parser/features/lambda_callable.gd')
-rw-r--r--modules/gdscript/tests/scripts/parser/features/lambda_callable.gd6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/gdscript/tests/scripts/parser/features/lambda_callable.gd b/modules/gdscript/tests/scripts/parser/features/lambda_callable.gd
index c3b2506156..17d00bce3c 100644
--- a/modules/gdscript/tests/scripts/parser/features/lambda_callable.gd
+++ b/modules/gdscript/tests/scripts/parser/features/lambda_callable.gd
@@ -1,4 +1,4 @@
func test():
- var my_lambda = func(x):
- print(x)
- my_lambda.call("hello")
+ var my_lambda = func(x):
+ print(x)
+ my_lambda.call("hello")