From 00703a43c0811ea46b390cdef9636124a7e59458 Mon Sep 17 00:00:00 2001 From: Josh Abraham Date: Tue, 9 Oct 2018 19:04:38 -0400 Subject: [PATCH] Fix #945 - documentation fix Correct references to user ids to group ids. --- src/unistd.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/unistd.rs b/src/unistd.rs index 1f357c418a..ad06a3c0eb 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.