1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:08:11 +00:00

Everywhere: Use title case for man section titles

In addition to the section headings on man.serenityos.org,
all occurances of man section titles are now formatted in title case.
This commit is contained in:
networkException 2022-02-25 13:29:48 +01:00 committed by Tim Flynn
parent 967300e1e3
commit 9279dd783b
4 changed files with 21 additions and 21 deletions

View file

@ -11,14 +11,14 @@
#include <AK/Try.h>
static ManualSectionNode s_sections[] = {
{ "1", "User programs" },
{ "2", "System calls" },
{ "3", "Library functions" },
{ "4", "Special files" },
{ "5", "File formats" },
{ "1", "User Programs" },
{ "2", "System Calls" },
{ "3", "Library Functions" },
{ "4", "Special Files" },
{ "5", "File Formats" },
{ "6", "Games" },
{ "7", "Miscellanea" },
{ "8", "Sysadmin tools" }
{ "8", "Sysadmin Tools" }
};
ManualModel::ManualModel()