summaryrefslogtreecommitdiff
path: root/Userland
diff options
context:
space:
mode:
authornetworkException <git@nwex.de>2022-02-25 13:29:48 +0100
committerTim Flynn <trflynn89@pm.me>2022-02-25 12:06:31 -0500
commit9279dd783beae202ea017043428649bfc219c767 (patch)
tree5a7e961fd06d8c2807cb53eba72792848ca1930b /Userland
parent967300e1e329c7d810e8b8b7695f868435091406 (diff)
downloadserenity-9279dd783beae202ea017043428649bfc219c767.zip
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.
Diffstat (limited to 'Userland')
-rw-r--r--Userland/Applications/Help/ManualModel.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/Userland/Applications/Help/ManualModel.cpp b/Userland/Applications/Help/ManualModel.cpp
index ea2a6883df..5c7667de47 100644
--- a/Userland/Applications/Help/ManualModel.cpp
+++ b/Userland/Applications/Help/ManualModel.cpp
@@ -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()