diff options
author | Brian Gianforcaro <b.gianfo@gmail.com> | 2020-01-13 17:38:41 -0800 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2020-01-14 08:00:35 +0100 |
commit | b553a8604809f43aee3e7c144577c394f3733224 (patch) | |
tree | 50fe915e845c13b1d2d4f98c11c05c232a2ab5b1 /Base | |
parent | fd64e97c8afb46b5e152bd18d0376c2094c9f3f3 (diff) | |
download | serenity-b553a8604809f43aee3e7c144577c394f3733224.zip |
man: Fix minor inconsistencies in pledge(2) man page
- tty promise was listed twice.
- Fix a few typos
Diffstat (limited to 'Base')
-rw-r--r-- | Base/usr/share/man/man2/pledge.md | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Base/usr/share/man/man2/pledge.md b/Base/usr/share/man/man2/pledge.md index c0ced211fd..b5e7c030bf 100644 --- a/Base/usr/share/man/man2/pledge.md +++ b/Base/usr/share/man/man2/pledge.md @@ -26,13 +26,12 @@ If `promises` or `execpromises` is null, the corresponding value is unchanged. ## Promises -* `stdio`: Basic I/O, memory allocation, information about self, various non-desctructive syscalls +* `stdio`: Basic I/O, memory allocation, information about self, various non-destructive syscalls * `thread`: The POSIX threading API * `id`: Ability to change UID/GID -* `tty`: TTY related functionility +* `tty`: TTY related functionality * `proc`: Process and scheduling related functionality * `exec`: The [`exec(2)`](exec.md) syscall -* `tty`: TTY related functionility * `unix`: UNIX local domain sockets * `inet`: IPv4 domain sockets * `rpath`: "Read" filesystem access |