chore: fix typos causing dead links

This commit is contained in:
sachharine 2025-10-07 11:25:41 +01:00 committed by GitHub
parent b811e9d878
commit ffcdf80192
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 6 additions and 6 deletions

View file

@ -328,7 +328,7 @@ impl WindowAttributes {
///
/// **Android / iOS / X11 / Wayland / Orbital:** Unsupported.
///
/// [`WindowEvent::Focused`]: crate::event::WindowEvent::Focused.
/// [`WindowEvent::Focused`]: crate::event::WindowEvent::Focused
#[inline]
pub fn with_active(mut self, active: bool) -> Self {
self.active = active;
@ -1943,15 +1943,15 @@ bitflags! {
pub struct ImeRequestData {
/// Text input hint and purpose.
///
/// To support updating it, enable [`ImeCapabilities::HINT_AND_PURPOSE`].
/// To support updating it, enable [`ImeCapabilities::hint_and_purpose()`].
pub hint_and_purpose: Option<(ImeHint, ImePurpose)>,
/// The IME cursor area which should not be covered by the input method popup.
///
/// To support updating it, enable [`ImeCapabilities::CURSOR_AREA`].
/// To support updating it, enable [`ImeCapabilities::cursor_area()`].
pub cursor_area: Option<(Position, Size)>,
/// The text surrounding the caret
///
/// To support updating it, enable [`ImeCapabilities::SURROUNDING_TEXT`].
/// To support updating it, enable [`ImeCapabilities::surrounding_text()`].
pub surrounding_text: Option<ImeSurroundingText>,
}