diff options
author | Robert Yevdokimov <robert.yevdokimov@autStand.com> | 2024-02-23 14:49:13 -0500 |
---|---|---|
committer | Robert Yevdokimov <robert.yevdokimov@autStand.com> | 2024-02-23 17:28:28 -0500 |
commit | 13e82094ee6deb325ba83111af7e354177ac0009 (patch) | |
tree | 6e84e0a3ff8cad3bf34d9612eef985d605edfeac /core/extension | |
parent | 3abb32671e6c7aa109e494f7077da955b173cfa9 (diff) | |
download | redot-engine-13e82094ee6deb325ba83111af7e354177ac0009.tar.gz |
Remove word duplicates in comments and strings, and fix casing and punctuation
Diffstat (limited to 'core/extension')
-rw-r--r-- | core/extension/gdextension.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/extension/gdextension.cpp b/core/extension/gdextension.cpp index c1298c8687..5d43dceece 100644 --- a/core/extension/gdextension.cpp +++ b/core/extension/gdextension.cpp @@ -431,7 +431,7 @@ void GDExtension::_register_extension_class_internal(GDExtensionClassLibraryPtr //inheriting from engine class } } else { - ERR_FAIL_MSG("Attempt to register an extension class '" + String(class_name) + "' using non-existing parent class '" + String(parent_class_name) + "'"); + ERR_FAIL_MSG("Attempt to register an extension class '" + String(class_name) + "' using non-existing parent class '" + String(parent_class_name) + "'."); } #ifdef TOOLS_ENABLED |