diff options
author | Raul Santos <raulsntos@gmail.com> | 2021-08-04 21:17:16 +0200 |
---|---|---|
committer | Raul Santos <raulsntos@gmail.com> | 2021-09-03 18:54:40 +0200 |
commit | 415529400b04dbb4f6eead66616f0b007da419db (patch) | |
tree | ad508a4faf3b7639c40e45b9817fbff1e579b93f /modules/mono | |
parent | 5508d4606b1622e8d1c204204288e323e88e04ac (diff) |
Fix constant tag documentation in C# bindings generator
Diffstat (limited to 'modules/mono')
-rw-r--r-- | modules/mono/editor/bindings_generator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/editor/bindings_generator.cpp b/modules/mono/editor/bindings_generator.cpp index 7fdef8ff45..67bcb34b1c 100644 --- a/modules/mono/editor/bindings_generator.cpp +++ b/modules/mono/editor/bindings_generator.cpp @@ -387,7 +387,7 @@ String BindingsGenerator::bbcode_to_xml(const String &p_bbcode, const TypeInterf xml_output.append(link_target); xml_output.append("</c>"); } - } else if (link_tag == "const") { + } else if (link_tag == "constant") { if (!target_itype || !target_itype->is_object_type) { if (OS::get_singleton()->is_stdout_verbose()) { if (target_itype) { |