From 98322a8876dc99b680da9491ad60ea6cb568fb3c Mon Sep 17 00:00:00 2001 From: Poommetee Ketson Date: Mon, 9 Oct 2017 23:59:53 +0700 Subject: [PATCH] EditorHelp: use '<' to show inheritance ...making it consistent with official docs --- editor/editor_help.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/editor_help.cpp b/editor/editor_help.cpp index cb94ea72d1..20ffbde378 100644 --- a/editor/editor_help.cpp +++ b/editor/editor_help.cpp @@ -694,7 +694,7 @@ Error EditorHelp::_goto_desc(const String &p_class, int p_vscr) { inherits = doc->class_list[inherits].inherits; if (inherits != "") { - class_desc->add_text(" , "); + class_desc->add_text(" < "); } }