summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/unistd.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/unistd.rs b/src/unistd.rs
index 1f357c41..ad06a3c0 100644
--- a/src/unistd.rs
+++ b/src/unistd.rs
@@ -2138,9 +2138,9 @@ mod setres {
/// Sets the real, effective, and saved gid.
/// ([see setresuid(2)](http://man7.org/linux/man-pages/man2/setresuid.2.html))
///
- /// * `rgid`: real user id
- /// * `egid`: effective user id
- /// * `sgid`: saved user id
+ /// * `rgid`: real group id
+ /// * `egid`: effective group id
+ /// * `sgid`: saved group id
/// * returns: Ok or libc error code.
///
/// Err is returned if the user doesn't have permission to set this GID.