Skip to content

Commit

Permalink
fixup to "fix some doc lints"
Browse files Browse the repository at this point in the history
  • Loading branch information
asomers committed Aug 14, 2022
1 parent aaa5fe9 commit a585d99
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/sys/signal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -911,13 +911,11 @@ pub fn sigprocmask(how: SigmaskHow, set: Option<&SigSet>, oldset: Option<&mut Si
/// # Arguments
///
/// * `pid` - Specifies which processes should receive the signal.
/// - If positive, specifies an individual process
/// - If positive, specifies an individual process.
/// - If zero, the signal will be sent to all processes whose group
/// ID is equal to the process group ID of the sender. This is a
#[cfg(target_os = "fuchsia")]
/// variant of `killpg`.
#[cfg(not(target_os = "fuchsia"))]
/// variant of [`killpg`].
#[cfg_attr(target_os = "fuchsia", doc = "variant of `killpg`.")]
#[cfg_attr(not(target_os = "fuchsia"), doc = "variant of [`killpg`].")]
/// - If `-1` and the process has super-user privileges, the signal
/// is sent to all processes exclusing system processes.
/// - If less than `-1`, the signal is sent to all processes whose
Expand Down

0 comments on commit a585d99

Please sign in to comment.