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

@ -149,7 +149,7 @@ where
self.validate()
}
/// Sets the [`Id`] of the [`Scrollable`].
/// Sets the [`widget::Id`] of the [`Scrollable`].
pub fn id(mut self, id: impl Into<widget::Id>) -> Self {
self.id = Some(id.into());
self
@ -1262,7 +1262,7 @@ where
}
}
/// Produces a [`Task`] that snaps the [`Scrollable`] with the given [`Id`]
/// Produces a [`Task`] that snaps the [`Scrollable`] with the given [`widget::Id`]
/// to the provided [`RelativeOffset`].
pub fn snap_to<T>(
id: impl Into<widget::Id>,
@ -1274,7 +1274,7 @@ pub fn snap_to<T>(
)))
}
/// Produces a [`Task`] that scrolls the [`Scrollable`] with the given [`Id`]
/// Produces a [`Task`] that scrolls the [`Scrollable`] with the given [`widget::Id`]
/// to the provided [`AbsoluteOffset`].
pub fn scroll_to<T>(
id: impl Into<widget::Id>,
@ -1286,7 +1286,7 @@ pub fn scroll_to<T>(
)))
}
/// Produces a [`Task`] that scrolls the [`Scrollable`] with the given [`Id`]
/// Produces a [`Task`] that scrolls the [`Scrollable`] with the given [`widget::Id`]
/// by the provided [`AbsoluteOffset`].
pub fn scroll_by<T>(
id: impl Into<widget::Id>,