From 90d675fb158e4a14ae2bbd835c466d91343c193d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bla=C5=BE=20Hrastnik?= Date: Fri, 25 Jun 2021 15:20:06 +0900 Subject: [PATCH] Fix AnyComponent test --- helix-term/src/compositor.rs | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/helix-term/src/compositor.rs b/helix-term/src/compositor.rs index cd0a12b5..c00b95e9 100644 --- a/helix-term/src/compositor.rs +++ b/helix-term/src/compositor.rs @@ -180,13 +180,14 @@ pub trait AnyComponent { /// Returns a boxed any from a boxed self. /// /// Can be used before `Box::downcast()`. - // - // # Examples - // - // ```rust - // let boxed: Box = Box::new(TextComponent::new("text")); - // let text: Box = boxed.as_boxed_any().downcast().unwrap(); - // ``` + /// + /// # Examples + /// + /// ```rust + /// use helix_term::{ui::Text, compositor::Component}; + /// let boxed: Box = Box::new(Text::new("text".to_string())); + /// let text: Box = boxed.as_boxed_any().downcast().unwrap(); + /// ``` fn as_boxed_any(self: Box) -> Box; }