From 564c4634c0a592a144025620a199e74982a750dd Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Tue, 7 Jul 2020 10:33:28 -0400 Subject: [PATCH] man pages: Consistently use "Otherwise, " in the few places that said "^Else, " --- Base/usr/share/man/man2/getresuid.md | 2 +- Base/usr/share/man/man2/seteuid.md | 2 +- Base/usr/share/man/man2/setresuid.md | 2 +- 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