Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Comment description error #6791

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

michael88888888
Copy link

I think the below should be modified

from

/// 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;

to

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

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

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

Comment on lines +29 to +40
// /// 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;

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks. Is this comment necessary?

@mox692 mox692 added T-docs Topic: documentation A-tokio Area: The main tokio crate M-net Module: tokio/net labels Aug 22, 2024
Copy link
Author

@michael88888888 michael88888888 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, it isn't. Thank U.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-tokio Area: The main tokio crate M-net Module: tokio/net T-docs Topic: documentation
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants