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

@ -107,7 +107,7 @@ where
}
}
/// Sets the [`Id`] of the [`Container`].
/// Sets the [`widget::Id`] of the [`Container`].
pub fn id(mut self, id: impl Into<widget::Id>) -> Self {
self.id = Some(id.into());
self
@ -458,7 +458,7 @@ pub fn draw_background<Renderer>(
}
/// Produces a [`Task`] that queries the visible screen bounds of the
/// [`Container`] with the given [`Id`].
/// [`Container`] with the given [`widget::Id`].
pub fn visible_bounds(_id: impl Into<widget::Id>) -> Task<Option<Rectangle>> {
todo!()
}