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
Notes: sideshowbarker 2024-07-17 18:18:21 +09:00
4 changed files with 21 additions and 21 deletions

View File

@ -20,14 +20,14 @@ It lets you search for and read manual pages (or "man pages").
The SerenityOS manual is split into the following *sections*, or *chapters*:
1. User programs
2. System calls
1. User Programs
2. System Calls
3. Libraries
4. Special files
5. File formats
4. Special Files
5. File Formats
6. Games
7. Miscellanea
8. Sysadmin tools
8. Sysadmin Tools
Sections are subject to change in the future.

View File

@ -19,14 +19,14 @@ the manual page for `man` program itself right now.
The SerenityOS manual is split into the following *sections*, or *chapters*:
1. User programs
2. System calls
1. User Programs
2. System Calls
3. Libraries
4. Special files
5. File formats
4. Special Files
5. File Formats
6. Games
7. Miscellanea
8. Sysadmin tools
8. Sysadmin Tools
Sections are subject to change in the future.

View File

@ -1,8 +1,8 @@
- [Section 1: User programs (applets, applications, utilities, etc.)](man1/index.html)
- [Section 2: System calls (getuid, mount, pledge, sendfd, etc.)](man2/index.html)
- [Section 3: Library functions (basename, isatty, POSIX functions, etc.)](man3/index.html)
- [Section 1: User Programs (applets, applications, utilities, etc.)](man1/index.html)
- [Section 2: System Calls (getuid, mount, pledge, sendfd, etc.)](man2/index.html)
- [Section 3: Library Functions (basename, isatty, POSIX functions, etc.)](man3/index.html)
- [Section 4: Special Files (audio, mem, etc.)](man4/index.html)
- [Section 5: File formats (getopt convention, Shell, SystemServer)](man5/index.html)
- [Section 5: File Formats (getopt convention, Shell, SystemServer)](man5/index.html)
- [Section 6: Games (2048, Chess, FlappyBug, etc.)](man6/index.html)
- [Section 7: Miscellanea (mitigations, sys filesystem, SystemServer, etc.)](man7/index.html)
- [Section 8: Sysadmin tools (dmesg, pls, sysctl, useradd, etc.)](man8/index.html)
- [Section 8: Sysadmin Tools (dmesg, pls, sysctl, useradd, etc.)](man8/index.html)

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()