diff options
-rw-r--r-- | Meta/Websites/man.serenityos.org/index.html | 14 | ||||
-rw-r--r-- | Userland/Applications/Help/ManualModel.cpp | 2 |
2 files changed, 8 insertions, 8 deletions
diff --git a/Meta/Websites/man.serenityos.org/index.html b/Meta/Websites/man.serenityos.org/index.html index 46cb5b3514..7f8ff11118 100644 --- a/Meta/Websites/man.serenityos.org/index.html +++ b/Meta/Websites/man.serenityos.org/index.html @@ -6,12 +6,12 @@ <body> <img src="banner.png" alt="SerenityOS"> <h1>SerenityOS man pages</h1> -<a href="1/"><p>Section 1</p></a> -<a href="2/"><p>Section 2</p></a> -<a href="3/"><p>Section 3</p></a> -<a href="4/"><p>Section 4</p></a> -<a href="5/"><p>Section 5</p></a> -<a href="7/"><p>Section 7</p></a> -<a href="8/"><p>Section 8</p></a> +<a href="1/"><p>Section 1: User programs (applets, applications, utilities, etc.)</p></a> +<a href="2/"><p>Section 2: System calls (getuid, mount, pledge, sendfd, etc.)</p></a> +<a href="3/"><p>Section 3: Library functions (basename, isatty, POSIX functions, etc.)</p></a> +<a href="4/"><p>Section 4: Special Files (audio, mem, etc.)</p></a> +<a href="5/"><p>Section 5: File formats (getopt convention, Shell, SystemServer)</p></a> +<a href="7/"><p>Section 7: Miscellanea (mitigations, sys filesystem, SystemServer, etc.)</p></a> +<a href="8/"><p>Section 8: Sysadmin tools (dmesg, pls, sysctl, useradd, etc.)</p></a> </body> </html> diff --git a/Userland/Applications/Help/ManualModel.cpp b/Userland/Applications/Help/ManualModel.cpp index c69b6a4767..3d6eb29a7e 100644 --- a/Userland/Applications/Help/ManualModel.cpp +++ b/Userland/Applications/Help/ManualModel.cpp @@ -15,7 +15,7 @@ static ManualSectionNode s_sections[] = { { "1", "User programs" }, { "2", "System calls" }, - { "3", "Libraries" }, + { "3", "Library functions" }, { "4", "Special files" }, { "5", "File formats" }, { "6", "Games" }, |