Skip to content

Commit

Permalink
Auto merge of #2563 - Minoru:bugfix/fix-doc-comment, r=Amanieu
Browse files Browse the repository at this point in the history
Fix doc comment on FreeBSD `kinfo_proc`

Cf. #2552 (comment)
  • Loading branch information
bors committed Nov 23, 2021
2 parents 82b85b7 + 6bf0857 commit e4ef58a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/unix/bsd/freebsdlike/freebsd/freebsd11/mod.rs
Expand Up @@ -185,7 +185,7 @@ s! {
pub ki_jid: ::c_int,
/// Number of threads in total.
pub ki_numthreads: ::c_int,
// Thread ID.
/// Thread ID.
pub ki_tid: ::lwpid_t,
/// Process priority.
pub ki_pri: ::priority,
Expand Down
2 changes: 1 addition & 1 deletion src/unix/bsd/freebsdlike/freebsd/freebsd12/mod.rs
Expand Up @@ -194,7 +194,7 @@ s! {
pub ki_jid: ::c_int,
/// Number of threads in total.
pub ki_numthreads: ::c_int,
// Thread ID.
/// Thread ID.
pub ki_tid: ::lwpid_t,
/// Process priority.
pub ki_pri: ::priority,
Expand Down
2 changes: 1 addition & 1 deletion src/unix/bsd/freebsdlike/freebsd/freebsd13/mod.rs
Expand Up @@ -212,7 +212,7 @@ s! {
pub ki_jid: ::c_int,
/// Number of threads in total.
pub ki_numthreads: ::c_int,
// Thread ID.
/// Thread ID.
pub ki_tid: ::lwpid_t,
/// Process priority.
pub ki_pri: ::priority,
Expand Down
2 changes: 1 addition & 1 deletion src/unix/bsd/freebsdlike/freebsd/freebsd14/mod.rs
Expand Up @@ -212,7 +212,7 @@ s! {
pub ki_jid: ::c_int,
/// Number of threads in total.
pub ki_numthreads: ::c_int,
// Thread ID.
/// Thread ID.
pub ki_tid: ::lwpid_t,
/// Process priority.
pub ki_pri: ::priority,
Expand Down

0 comments on commit e4ef58a

Please sign in to comment.