From df3586ed007342e041f555e1c5600dca6b9bb7d0 Mon Sep 17 00:00:00 2001 From: +merlan #flirora Date: Tue, 24 Jun 2025 16:53:45 -0400 Subject: [PATCH] Revert another stray change --- crates/typst-layout/src/inline/line.rs | 4 ---- 1 file changed, 4 deletions(-) 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>),