diff options
author | Poommetee Ketson <poommetee@protonmail.com> | 2017-10-09 23:59:53 +0700 |
---|---|---|
committer | Poommetee Ketson <poommetee@protonmail.com> | 2017-10-13 20:02:48 +0700 |
commit | 98322a8876dc99b680da9491ad60ea6cb568fb3c (patch) | |
tree | 26e5839c076b66c0b50f4a66126523dbbe18e5b2 /editor/editor_help.cpp | |
parent | 36ca9c9251918d91b29d0d91ece83087a8f186e6 (diff) |
EditorHelp: use '<' to show inheritance
...making it consistent with official docs
Diffstat (limited to 'editor/editor_help.cpp')
-rw-r--r-- | editor/editor_help.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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(" < "); } } |