Skip to content

Commit

Permalink
Merge pull request #88911 from Chaosus/fix_editor_help
Browse files Browse the repository at this point in the history
Remove redundant space after enum/flags word in editor docs
  • Loading branch information
akien-mga committed Feb 27, 2024
2 parents ed2ff19 + f7c3c9f commit 2a05632
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions editor/editor_help.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1622,9 +1622,9 @@ void EditorHelp::_update_doc() {
enum_line[E.key] = class_desc->get_paragraph_count() - 2;
class_desc->push_color(theme_cache.title_color);
if (E.value.size() && E.value[0].is_bitfield) {
class_desc->add_text("flags ");
class_desc->add_text("flags ");
} else {
class_desc->add_text("enum ");
class_desc->add_text("enum ");
}
class_desc->pop(); // color

Expand Down

0 comments on commit 2a05632

Please sign in to comment.