diff --git a/crates/typst-layout/src/inline/line.rs b/crates/typst-layout/src/inline/line.rs index 1dca3c8d2..d02bf573e 100644 --- a/crates/typst-layout/src/inline/line.rs +++ b/crates/typst-layout/src/inline/line.rs @@ -705,10 +705,6 @@ impl Debug for Items<'_> { } /// A reference to or a boxed item. -/// -/// This is conceptually similar to a [`Cow<'a, Item<'a>>`][std::borrow::Cow], -/// but we box owned items since an [`Item`] is much bigger than -/// a box. pub enum ItemEntry<'a> { Ref(&'a Item<'a>), Box(Box>),