Fix broken intra-doc links

This commit is contained in:
Héctor Ramón Jiménez 2025-08-23 02:41:52 +02:00
parent fbe60feb7e
commit 885d45f435
No known key found for this signature in database
GPG key ID: 7CC46565708259A7
7 changed files with 21 additions and 21 deletions

View file

@ -100,7 +100,7 @@ where
}
}
/// Finds the [`Target`] of the given widget [`Selector`] in the [`Simulator`].
/// Finds the target of the given widget [`Selector`] in the [`Simulator`].
pub fn find<S>(&mut self, selector: S) -> Result<S::Output, Error>
where
S: Selector + Send,
@ -135,10 +135,10 @@ where
self.cursor = mouse::Cursor::Available(position.into());
}
/// Clicks the [`Target`] found by the given [`Selector`], if any.
/// Clicks the [`Bounded`] target found by the given [`Selector`], if any.
///
/// This consists in:
/// - Pointing the mouse cursor at the center of the [`Target`].
/// - Pointing the mouse cursor at the center of the [`Bounded`] target.
/// - Simulating a [`click`].
pub fn click<S>(&mut self, selector: S) -> Result<S::Output, Error>
where