diff options
author | Ben Wiederhake <BenWiederhake.GitHub@gmx.de> | 2021-10-16 00:05:23 +0200 |
---|---|---|
committer | Idan Horowitz <idan.horowitz@gmail.com> | 2021-10-22 19:49:28 +0300 |
commit | 5c04a2d4b34be9b1e1dd662d8377af926b88d863 (patch) | |
tree | f6c0cb8981101bf6ad4b44f23d66d5a69cf653d2 | |
parent | 857cac6d1d240b9113a5dd5fd8166488c675c5f9 (diff) | |
download | serenity-5c04a2d4b34be9b1e1dd662d8377af926b88d863.zip |
man.serenityos.org: Add section descriptions to overview page
-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" }, |