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 | |
| parent | 6a007c7512fe25765486c9a86854d533de4b1709 (diff) | |
| download | redot-engine-5c43e4c1efc85856a4e918bc67e1266657b9110c.tar.gz | |
Fix various typos with codespell
Using 2.2.6.dev180+ge3a2cfbd.
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/gdscript/tests/scripts/analyzer/errors/typed_array_init_with_unconvertable_in_literal.gd | 4 | ||||
| -rw-r--r-- | modules/openxr/openxr_api.h | 2 |
2 files changed, 3 insertions, 3 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') diff --git a/modules/openxr/openxr_api.h b/modules/openxr/openxr_api.h index 2498cd1eb4..6d1c731e7a 100644 --- a/modules/openxr/openxr_api.h +++ b/modules/openxr/openxr_api.h @@ -289,7 +289,7 @@ private: bool on_state_loss_pending(); bool on_state_exiting(); - // convencience + // convenience void copy_string_to_char_buffer(const String p_string, char *p_buffer, int p_buffer_len); public: |
