1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-15 13:51:40 +00:00

core/[io;object]: fix typo 'resoucre' to 'resource'

This commit is contained in:
Indah Sylvia
2017-08-08 18:07:29 +07:00
parent 69f650f98f
commit 5014b9dc40
4 changed files with 9 additions and 9 deletions

View File

@@ -1850,7 +1850,7 @@ void ObjectDB::cleanup() {
String node_name;
if (instances[*K]->is_type("Node"))
node_name = " - Node Name: " + String(instances[*K]->call("get_name"));
if (instances[*K]->is_type("Resoucre"))
if (instances[*K]->is_type("Resource"))
node_name = " - Resource Name: " + String(instances[*K]->call("get_name")) + " Path: " + String(instances[*K]->call("get_path"));
print_line("Leaked Instance: " + String(instances[*K]->get_type()) + ":" + itos(*K) + node_name);
}