From c3ee2e04a2b528e1e779dde024d8b1f433b9f3f0 Mon Sep 17 00:00:00 2001 From: Antoine Beyeler Date: Fri, 10 Jan 2025 16:31:50 +0100 Subject: [PATCH] fix doclink --- crates/viewer/re_ui/src/list_item/custom_content.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/viewer/re_ui/src/list_item/custom_content.rs b/crates/viewer/re_ui/src/list_item/custom_content.rs index af0f77a5ecc2..31a85cc9a8ab 100644 --- a/crates/viewer/re_ui/src/list_item/custom_content.rs +++ b/crates/viewer/re_ui/src/list_item/custom_content.rs @@ -34,8 +34,8 @@ impl<'a> CustomContent<'a> { /// Create a content with a custom UI closure. /// /// The closure will be called from within a [`egui::Ui`] with its maximum width set as per the - /// list item geometry. Note that this may differ from [`crate::ContentContext::rect`] if a - /// button is set. + /// list item geometry. Note that this may differ from [`ContentContext::rect`] if a button is + /// set. pub fn new(ui: impl FnOnce(&mut egui::Ui, &ContentContext<'_>) + 'a) -> Self { Self { ui: Box::new(ui),