made rust docs happy

This commit is contained in:
jrx 2023-10-27 23:03:12 +02:00
parent b77b1a62c8
commit 7941dda28d

View file

@ -482,8 +482,7 @@ where
}
}
/// Setups the `^C` handler in order to call [`shutdown`] when pressed.
/// [`shutdown`]: ShutdownToken::shutdown
/// Setups the `^C` handler in order to call [`ShutdownToken::shutdown`] when pressed.
#[cfg(feature = "ctrlc_handler")]
#[deprecated(since = "0.10.0", note = "use `enable_ctrlc_handler` on builder instead")]
pub fn setup_ctrlc_handler(&mut self) -> &mut Self {
@ -491,9 +490,7 @@ where
self
}
/// Returns a shutdown token, which can later be used to shutdown
/// dispatching.
/// [`shutdown`]: ShutdownToken::shutdown
/// Returns a shutdown token, which can later be used to [`ShutdownToken::shutdown`].
pub fn shutdown_token(&self) -> ShutdownToken {
self.state.clone()
}