summaryrefslogtreecommitdiff
path: root/core/variant
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-02-01 08:45:41 +0100
committerRémi Verschelde <rverschelde@gmail.com>2023-02-01 08:45:41 +0100
commit394bb0ee2bcd863aed75e1c6799c4c8138dbf269 (patch)
tree05e28b1b54da3ac7939fc3529191390a8f7e66a2 /core/variant
parente101305950883661f9c47d8e6c552355f5e1fc2e (diff)
Fix various typos with codespell
Finally do the childs -> children rename too.
Diffstat (limited to 'core/variant')
-rw-r--r--core/variant/array.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/variant/array.cpp b/core/variant/array.cpp
index d3c5ca801f..2d7dff0b27 100644
--- a/core/variant/array.cpp
+++ b/core/variant/array.cpp
@@ -246,7 +246,7 @@ void Array::assign(const Array &p_array) {
ERR_FAIL_COND_MSG(ce.error, vformat(R"(Unable to convert array index %i from "%s" to "%s".)", i, Variant::get_type_name(value->get_type()), Variant::get_type_name(typed.type)));
}
} else if (Variant::can_convert_strict(source_typed.type, typed.type)) {
- // from primitives to different convertable primitives
+ // from primitives to different convertible primitives
for (int i = 0; i < size; i++) {
const Variant *value = source + i;
Callable::CallError ce;