diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-09-12 08:54:18 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-09-12 08:54:18 +0200 |
commit | 5c43e4c1efc85856a4e918bc67e1266657b9110c (patch) | |
tree | 1d518856b872791745613e6cfb71e5673df0b585 /modules/gdscript/tests/scripts | |
parent | 6a007c7512fe25765486c9a86854d533de4b1709 (diff) | |
download | redot-engine-5c43e4c1efc85856a4e918bc67e1266657b9110c.tar.gz |
Fix various typos with codespell
Using 2.2.6.dev180+ge3a2cfbd.
Diffstat (limited to 'modules/gdscript/tests/scripts')
-rw-r--r-- | modules/gdscript/tests/scripts/analyzer/errors/typed_array_init_with_unconvertable_in_literal.gd | 4 |
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') |