summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-09-12 08:54:18 +0200
committerRémi Verschelde <rverschelde@gmail.com>2023-09-12 08:54:18 +0200
commit5c43e4c1efc85856a4e918bc67e1266657b9110c (patch)
tree1d518856b872791745613e6cfb71e5673df0b585 /modules/gdscript/tests
parent6a007c7512fe25765486c9a86854d533de4b1709 (diff)
downloadredot-engine-5c43e4c1efc85856a4e918bc67e1266657b9110c.tar.gz
Fix various typos with codespell
Using 2.2.6.dev180+ge3a2cfbd.
Diffstat (limited to 'modules/gdscript/tests')
-rw-r--r--modules/gdscript/tests/scripts/analyzer/errors/typed_array_init_with_unconvertable_in_literal.gd4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gdscript/tests/scripts/analyzer/errors/typed_array_init_with_unconvertable_in_literal.gd b/modules/gdscript/tests/scripts/analyzer/errors/typed_array_init_with_unconvertable_in_literal.gd
index 25cde1d40b..7cc5aaf44f 100644
--- a/modules/gdscript/tests/scripts/analyzer/errors/typed_array_init_with_unconvertable_in_literal.gd
+++ b/modules/gdscript/tests/scripts/analyzer/errors/typed_array_init_with_unconvertable_in_literal.gd
@@ -1,4 +1,4 @@
func test():
- var unconvertable := 1
- var typed: Array[Object] = [unconvertable]
+ var unconvertible := 1
+ var typed: Array[Object] = [unconvertible]
print('not ok')