Revert another stray change

This commit is contained in:
+merlan #flirora 2025-06-24 16:53:45 -04:00
parent b25cdcdcb3
commit df3586ed00

View File

@ -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<Item<'a>>),