From f92b87e5f8025e8ac7de1eaaf8fafbaf10521e7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Fri, 31 Aug 2018 22:38:28 +0200 Subject: DocData: Fix return type listed as "var" instead of "Variant" --- editor/doc/doc_dump.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'editor/doc/doc_dump.cpp') diff --git a/editor/doc/doc_dump.cpp b/editor/doc/doc_dump.cpp index adbe23dcd5..06d35c4d3a 100644 --- a/editor/doc/doc_dump.cpp +++ b/editor/doc/doc_dump.cpp @@ -142,7 +142,7 @@ void DocDump::dump(const String &p_file) { if (arginfo.hint == PROPERTY_HINT_RESOURCE_TYPE) type_name = arginfo.hint_string; else if (arginfo.type == Variant::NIL) - type_name = "var"; + type_name = "Variant"; else type_name = Variant::get_type_name(arginfo.type); -- cgit v1.2.3