net: fix docs discription in unix module (#6791)

This commit is contained in:
Michael_Liu 2024-11-11 22:14:46 +08:00 committed by GitHub
parent bb7ca7507b
commit 3b677d1fde
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -26,14 +26,14 @@ pub use ucred::UCred;
pub mod pipe;
/// A type representing process and process group IDs.
/// A type representing user ID.
#[allow(non_camel_case_types)]
pub type uid_t = u32;
/// A type representing user ID.
/// A type representing group ID.
#[allow(non_camel_case_types)]
pub type gid_t = u32;
/// A type representing group ID.
/// A type representing process and process group IDs.
#[allow(non_camel_case_types)]
pub type pid_t = i32;