diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2023-06-16 09:07:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-16 09:07:37 +0200 |
commit | 9c41c4ecb6d122792fae2060e2a411ecf6812add (patch) | |
tree | 752b2ca247f087920723b70a01d3b3ae5d471474 /tests | |
parent | c0d8d91b15597209a1ca865c6ff4f84f06f7de86 (diff) | |
parent | 6fb391bc2366cf51780f5bb6eaa199d5b63b9ec1 (diff) | |
download | redot-engine-9c41c4ecb6d122792fae2060e2a411ecf6812add.tar.gz |
Merge pull request #78316 from akien-mga/codespell
Fix various typos with codespell
Diffstat (limited to 'tests')
-rw-r--r-- | tests/scene/test_code_edit.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/scene/test_code_edit.h b/tests/scene/test_code_edit.h index c8ce49f318..d6858fbcb4 100644 --- a/tests/scene/test_code_edit.h +++ b/tests/scene/test_code_edit.h @@ -3496,7 +3496,7 @@ TEST_CASE("[SceneTree][CodeEdit] completion") { code_edit->confirm_code_completion(); CHECK(code_edit->get_line(0) == "test"); - /* Favorize good capitalisation. */ + /* Favorize good capitalization. */ code_edit->clear(); code_edit->insert_text_at_caret("te"); code_edit->set_caret_column(2); @@ -3506,7 +3506,7 @@ TEST_CASE("[SceneTree][CodeEdit] completion") { code_edit->confirm_code_completion(); CHECK(code_edit->get_line(0) == "test"); - /* Favorize location to good capitalisation. */ + /* Favorize location to good capitalization. */ code_edit->clear(); code_edit->insert_text_at_caret("te"); code_edit->set_caret_column(2); @@ -3526,7 +3526,7 @@ TEST_CASE("[SceneTree][CodeEdit] completion") { code_edit->confirm_code_completion(); CHECK(code_edit->get_line(0) == "stest"); - /* Favorize good capitalisation to closest to start. */ + /* Favorize good capitalization to closest to start. */ code_edit->clear(); code_edit->insert_text_at_caret("te"); code_edit->set_caret_column(2); |