From 394bb0ee2bcd863aed75e1c6799c4c8138dbf269 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Wed, 1 Feb 2023 08:45:41 +0100 Subject: Fix various typos with codespell Finally do the childs -> children rename too. --- core/variant/array.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/variant') 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; -- cgit v1.2.3