From ed11db48cb8fef4ff39eeaab4981467587b4a15f Mon Sep 17 00:00:00 2001 From: Paul Loyd Date: Fri, 2 Aug 2024 23:22:25 +0400 Subject: [PATCH] style(core/signal): improve doc to satisfy clippy --- elfo-core/src/signal.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/elfo-core/src/signal.rs b/elfo-core/src/signal.rs index 55e1a063..b1c7b7c1 100644 --- a/elfo-core/src/signal.rs +++ b/elfo-core/src/signal.rs @@ -86,10 +86,10 @@ enum SignalInner { /// A kind of signal to listen to. /// -/// * `Unix*` variants are available only on UNIX systems and produce nothing -/// on other systems. -/// * `Windows*` variants are available only on Windows and produce nothing -/// on other systems. +/// * `Unix*` variants are available only on UNIX systems and produce nothing on +/// other systems. +/// * `Windows*` variants are available only on Windows and produce nothing on +/// other systems. /// /// It helps to avoid writing `#[cfg(_)]` everywhere around signals. #[derive(Debug, Clone, Copy, PartialEq, Eq)]