summaryrefslogtreecommitdiffstats
path: root/core/extension
diff options
context:
space:
mode:
authorRobert Yevdokimov <robert.yevdokimov@autStand.com>2024-02-23 14:49:13 -0500
committerRobert Yevdokimov <robert.yevdokimov@autStand.com>2024-02-23 17:28:28 -0500
commit13e82094ee6deb325ba83111af7e354177ac0009 (patch)
tree6e84e0a3ff8cad3bf34d9612eef985d605edfeac /core/extension
parent3abb32671e6c7aa109e494f7077da955b173cfa9 (diff)
downloadredot-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.cpp2
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