From 4ad3c48e3ff98609645bb230ea3de6ac9bc5440a Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Sat, 23 May 2026 16:33:57 +0800 Subject: [PATCH] Fix "cargo doc" error --- src/signal.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/signal.rs b/src/signal.rs index aaadaee11..85d19c357 100644 --- a/src/signal.rs +++ b/src/signal.rs @@ -499,7 +499,7 @@ pub fn desc(&self) -> &'static wstr { pub fn code(&self) -> i32 { self.0.into() } - /// Parses a string into the equivalent [`Signal`] sharing the same name. + /// Parses a string into the equivalent [`RawSignal`] sharing the same name. /// Accepts both `SIGABC` and `ABC` to match against `Signal::SIGABC`. If the signal name is not /// recognized, `None` is returned. /// This also accepts integer codes via fish_wcstoi().