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

Merged
merged 3 commits into from
Nov 11, 2024
Merged

Comment description error #6791

merged 3 commits into from
Nov 11, 2024

Conversation

michael88888888
Copy link
Contributor

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;

tokio/src/net/unix/mod.rs Outdated Show resolved Hide resolved
@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
Contributor 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.

@mox692 mox692 enabled auto-merge (squash) November 11, 2024 13:59
@mox692 mox692 merged commit 3b677d1 into tokio-rs:master Nov 11, 2024
81 checks passed
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