diff options
author | Nico Weber <thakis@chromium.org> | 2020-07-07 10:33:28 -0400 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-07-07 16:37:46 +0200 |
commit | 564c4634c0a592a144025620a199e74982a750dd (patch) | |
tree | 9213a0868021421fb7c521abf8c2f8a2586a6efd /Base/usr | |
parent | 419703a1f23509cde3e386e6f918141f320cfc48 (diff) | |
download | serenity-564c4634c0a592a144025620a199e74982a750dd.zip |
man pages: Consistently use "Otherwise, " in the few places that said "^Else, "
Diffstat (limited to 'Base/usr')
-rw-r--r-- | Base/usr/share/man/man2/getresuid.md | 2 | ||||
-rw-r--r-- | Base/usr/share/man/man2/seteuid.md | 2 | ||||
-rw-r--r-- | Base/usr/share/man/man2/setresuid.md | 2 | ||||
-rw-r--r-- | Base/usr/share/man/man2/setuid.md | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/Base/usr/share/man/man2/getresuid.md b/Base/usr/share/man/man2/getresuid.md index 91bba68d61..4fbc1cde41 100644 --- a/Base/usr/share/man/man2/getresuid.md +++ b/Base/usr/share/man/man2/getresuid.md @@ -18,7 +18,7 @@ Returns the real, effective, and saved user or group ID. ## Return value If the call was set successful, returns 0. -Else, returns -1 and sets `errno` to describe the error. +Otherwise, returns -1 and sets `errno` to describe the error. ## Errors diff --git a/Base/usr/share/man/man2/seteuid.md b/Base/usr/share/man/man2/seteuid.md index 95da901b99..e47347d32c 100644 --- a/Base/usr/share/man/man2/seteuid.md +++ b/Base/usr/share/man/man2/seteuid.md @@ -22,7 +22,7 @@ In particular, `seteuid(geteuid())` will fail if the current effective user ID i ## Return value If the call was set successful, returns 0. -Else, returns -1 and sets `errno` to describe the error. +Otherwise, returns -1 and sets `errno` to describe the error. ## Errors diff --git a/Base/usr/share/man/man2/setresuid.md b/Base/usr/share/man/man2/setresuid.md index 6431e0c20d..a98537d518 100644 --- a/Base/usr/share/man/man2/setresuid.md +++ b/Base/usr/share/man/man2/setresuid.md @@ -22,7 +22,7 @@ For non-superusers, each of the given values has to be equal to any of the curre ## Return value If the call was set successful, returns 0. -Else, returns -1 and sets `errno` to describe the error. +Otherwise, returns -1 and sets `errno` to describe the error. ## Errors diff --git a/Base/usr/share/man/man2/setuid.md b/Base/usr/share/man/man2/setuid.md index ef1c1689fd..7743d23355 100644 --- a/Base/usr/share/man/man2/setuid.md +++ b/Base/usr/share/man/man2/setuid.md @@ -20,7 +20,7 @@ For non-superusers, the given ID has to be equal to the current real or effectiv ## Return value If the call was set successful, returns 0. -Else, returns -1 and sets `errno` to describe the error. +Otherwise, returns -1 and sets `errno` to describe the error. ## Errors |