Fix broken links in Pop::delay documentation

This commit is contained in:
Héctor Ramón Jiménez 2025-02-20 04:03:14 +01:00
parent ffc412d6b7
commit 81ca3d2a22
No known key found for this signature in database
GPG key ID: 7CC46565708259A7

View file

@ -94,6 +94,10 @@ where
/// [`on_hide`] event; after the content is shown or hidden. /// [`on_hide`] event; after the content is shown or hidden.
/// ///
/// When combined with [`key`], this can be useful to debounce key changes. /// When combined with [`key`], this can be useful to debounce key changes.
///
/// [`on_show`]: Self::on_show
/// [`on_hide`]: Self::on_hide
/// [`key`]: Self::key
pub fn delay(mut self, delay: impl Into<Duration>) -> Self { pub fn delay(mut self, delay: impl Into<Duration>) -> Self {
self.delay = delay.into(); self.delay = delay.into();
self self