diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2023-01-11 01:10:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-11 01:10:10 +0100 |
commit | 5eb161a9c8eb210d461178a7ea5b6368956b45ca (patch) | |
tree | 76953a5eaf2bef8c24456fce1b541d691577f940 /modules/gdscript/tests/scripts/runtime/features/array_string_stringname_equivalent.gd | |
parent | c2f96a8b837de99c76db55a30f950c337b7637eb (diff) | |
parent | 44d1d72af19ff7874704fa88d7d08fe4f782c9db (diff) | |
download | redot-engine-5eb161a9c8eb210d461178a7ea5b6368956b45ca.tar.gz |
Merge pull request #70595 from adamscott/add-gdscript-editorconfig
Add GDScript `.editorconfig` rules
Diffstat (limited to 'modules/gdscript/tests/scripts/runtime/features/array_string_stringname_equivalent.gd')
-rw-r--r-- | modules/gdscript/tests/scripts/runtime/features/array_string_stringname_equivalent.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/tests/scripts/runtime/features/array_string_stringname_equivalent.gd b/modules/gdscript/tests/scripts/runtime/features/array_string_stringname_equivalent.gd index 9b64084fa6..bd38259cec 100644 --- a/modules/gdscript/tests/scripts/runtime/features/array_string_stringname_equivalent.gd +++ b/modules/gdscript/tests/scripts/runtime/features/array_string_stringname_equivalent.gd @@ -9,7 +9,7 @@ func test(): array_sname.push_back(&"godot") print("String in Array: ", "godot" in array_sname) - # Not equal because the values are different types. + # Not equal because the values are different types. print("Arrays not equal: ", array_str != array_sname) var string_array: Array[String] = [] |