diff options
author | kobewi <kobewi4e@gmail.com> | 2021-11-23 12:20:57 +0100 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2021-11-23 12:20:57 +0100 |
commit | 4682f2229376a8e98a521c06ecd157e020f46d88 (patch) | |
tree | f07173d6e1568e3ba862c09452c9fedc6d5ee9e4 /scene/resources | |
parent | dbef4bbd98b655d6f89601c9e44c679b373b3628 (diff) | |
download | redot-engine-4682f2229376a8e98a521c06ecd157e020f46d88.tar.gz |
Improve various texts
Diffstat (limited to 'scene/resources')
-rw-r--r-- | scene/resources/resource_format_text.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/resources/resource_format_text.cpp b/scene/resources/resource_format_text.cpp index ea3b72af1b..cead42b4e2 100644 --- a/scene/resources/resource_format_text.cpp +++ b/scene/resources/resource_format_text.cpp @@ -350,7 +350,7 @@ Ref<PackedScene> ResourceLoaderText::_parse_node_tag(VariantParser::ResourcePars } else if (next_tag.name == "editable") { if (!next_tag.fields.has("path")) { error = ERR_FILE_CORRUPT; - error_text = "missing 'path' field from connection tag"; + error_text = "missing 'path' field from editable tag"; _printerr(); return Ref<PackedScene>(); } |