Skip to content

Commit

Permalink
net: fix docs discription in unix module (#6791)
Browse files Browse the repository at this point in the history
  • Loading branch information
michael88888888 authored Nov 11, 2024
1 parent bb7ca75 commit 3b677d1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tokio/src/net/unix/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;

0 comments on commit 3b677d1

Please sign in to comment.