diff --git a/helix-term/src/compositor.rs b/helix-term/src/compositor.rs index 9811655c..99f9bb0e 100644 --- a/helix-term/src/compositor.rs +++ b/helix-term/src/compositor.rs @@ -182,10 +182,8 @@ pub trait AnyComponent { /// # Examples /// /// ```rust - /// # use cursive_core::views::TextComponent; - /// # use cursive_core::view::Component; - /// let boxed: Box = Box::new(TextComponent::new("text")); - /// let text: Box = boxed.as_boxed_any().downcast().unwrap(); + /// // let boxed: Box = Box::new(TextComponent::new("text")); + /// // let text: Box = boxed.as_boxed_any().downcast().unwrap(); /// ``` fn as_boxed_any(self: Box) -> Box; }