Skip to content

Commit

Permalink
Comment description error
Browse files Browse the repository at this point in the history
  • Loading branch information
sighttview committed Aug 18, 2024
1 parent 365269a commit 91cd7da
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions tokio/src/net/unix/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,26 @@ pub use ucred::UCred;

pub mod pipe;

/// A type representing process and process group IDs.
// /// A type representing process and process group IDs.
// #[allow(non_camel_case_types)]
// pub type uid_t = u32;

// /// A type representing user ID.
// #[allow(non_camel_case_types)]
// pub type gid_t = u32;

// /// A type representing group ID.
// #[allow(non_camel_case_types)]
// pub type pid_t = i32;

/// 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 91cd7da

Please sign in to comment.